Hi,
getting back to you...!
we've located version 1.8.3 pre release for you at:
http://www.upicrm.com/wp-content/uploads/2015/06/upicrm-1.8.3.zip
</>
It includes hooks in UpiCRM, for the following actions:
1. New leads
2. change lead owner
3. change lead status.
this is how it should work:
Action Name: upicrm_after_new_lead
Located in: classes/upicrm_leads.php
Example of use:
function upicrm_hook($lead_id) {
echo $lead_id;
}
add_action( 'upicrm_after_new_lead', 'upicrm_hook' );
Action Name: upicrm_after_lead_change_user
Located in: classes/upicrm_leads.php
Example of use:
function upicrm_hook($lead_id) {
echo $lead_id;
}
add_action( 'upicrm_after_lead_change_user', 'upicrm_hook' );
Action Name: upicrm_after_lead_change_status
Located in: classes/upicrm_leads.php
Example of use:
function upicrm_hook($lead_id) {
echo $lead_id;
}
add_action( 'upicrm_after_lead_change_status', 'upicrm_hook' );
--------------------
I believe it is "thin", but hopefully it will answer your need.
If you need more, just let us know.
Any feedback - please share.
Thanks
Uri