Update to existing hook

This forum is for programmers who have questions about the source code.
Post Reply
User avatar
dcrider
Posts: 67
Joined: Sun Sep 29, 2019 11:03 am
Contact:

Update to existing hook

Post by dcrider »

Would it be possible to update

Code: Select all

Plugins.HookAddCode(this, "FormPayPlan.Load_end");
to have the PayPlan object added like so?

Code: Select all

Plugins.HookAddCode(this, "FormPayPlan.Load_end", _payPlanCur);
PatrickC
Posts: 56
Joined: Thu Jun 06, 2019 11:37 am

Re: Update to existing hook

Post by PatrickC »

Plugin updated to the following.

Code: Select all

Plugins.HookAddCode(this,"FormPayPlan.Load_end",PatCur,IsNew,_payPlanCur);
Added to version 19.3.16.
Patrick Carlson
Open Dental Software
http://www.opendental.com
User avatar
dcrider
Posts: 67
Joined: Sun Sep 29, 2019 11:03 am
Contact:

Re: Update to existing hook

Post by dcrider »

Thank you!
Post Reply