Please Log in or Create an account to join the conversation.
Dig into the API files. User object class is found below.1-how can i see list of all the function such as delete() or etc?
CB fires triggers after every profile update as does Joomla. So a CB plugin acting on those triggers or a Joomla plugin acting on those triggers could be ued to add whatever custom behavior you need after a profile is updated. Easily done using CB Auto Actions and a Code or Query action though.2-is it possible do something after user edit his profile, in other table of database?(table of my custom form)
You can do whatever you want as it's your site, but SQL syncing fires none of CBs triggers so it bypasses all checks and plugin integrations in CB. It's a bandaid for a bigger issue you have and that's registering users with Joomla API instead of CB API.3-what is your idea about using view in sql to sync __comprofiler with my table? (i want use this www.w3schools.com/sql/sql_view.asp )
Please Log in or Create an account to join the conversation.
i want something such as this but with your API:krileon wrote: It's a bandaid for a bigger issue you have and that's registering users with Joomla API instead of CB API.
Please Log in or Create an account to join the conversation.
Then you need to develop a Fabrik plugin that uses CB API to register a user. CB API to do this can be found below.i want something such as this but with your API:
If you mean you want to do this when you update a CB profile from within CB then you'd act on the after profile update trigger in CB Auto Actions and probably use a Query action to execute SQL on profile update to insert/update your custom database table as needed.i want sync my user information between __comprofiler and my custom table that Fabrik moderate that. any idea?
Please Log in or Create an account to join the conversation.