How can I synchronize my joomla users to OCS2 PKP conference site?

43 views Asked by At

I have a website in joomla 3.9 I need to connect the users to a OCS2 pkp conference management system to not register them again in the conference management site. the data bases are hosting in one server.

1

There are 1 answers

0
David Addoteye On

Yes you can. You will user event to get the data and curl to send/pass the data to OCS system. On the OCS portal, you can create a simple PHP to listen POST and then you process the data into your OCS database.

The data in onUserAfterSave has all the values of the user. the $isNew check if this is a new user or existing user making an update.

public function onUserAfterSave($data, $isNew, $result, $error) {}