Osclass forums
Support forums => Plugins => Topic started by: Abhi on June 04, 2016, 09:37:54 am
-
hi I am developing plugin and i want to call a function just after ad is posted or the ad is being updated like the emails are getting sent but i want this functionality to be in a plugin not to modify in osclass core. Looking forward for someone to help me in this regard
-
Hi,
There are two hooks "posted_item'" and "edited_item":
<?php
function cust_after_add_published($item) {
// $item is an array with all the new ad data
// Code here
}
function cust_after_add_edited($item) {
// $item is an array with all the edited ad data. Mind that this is slightly different to the one sent to the other function
// Code here
}
osc_add_hook('posted_item', 'cust_after_add_published');
osc_add_hook('edited_item', 'cust_after_add_edited');
?>
Hope it will be useful for you.
Regards
-
Hi teseo thanks your functions idea worked like charm for me 8)
I just want one more help if possible I want to store a user id and password for a particular service from the plugin with setting please guide me a bit in this
I will be releasing my plugin soon for testing
-
I guess youl'll need to create a new table in the database to store that data... ??? Take a look at how other plugins manage that.
Regards