Hook Request - Practice Genius
Posted: Fri Mar 10, 2017 1:19 pm
Hi,
We're writing a plug-in for Open Dental to integrate with our Rewards Program and would like to request some hooks
FormApptEdit After Line 3696
FormApptEdit After Line 3801, add 2 parameters
FormPatientEdit After Line 5452, add 3 parameters ( or add PatOld and make the checkboxes public on the form)
ContraAppt after Line 3302
ContraAppt after Line 4062
ContraAppt after Line 5529
ContraAppt after Line 5705
ContraAppt after Line 5790
ContraAppt after Line 5883
We're writing a plug-in for Open Dental to integrate with our Rewards Program and would like to request some hooks
FormApptEdit After Line 3696
Code: Select all
Plugins.HookAddCode(null, "FormApptEdit.butDelete_Click_end", AptCur);Code: Select all
Plugins.HookAddCode(this,"FormApptEdit.butOK_Click_end",AptCur, [b]AptOld, pat[/b])Code: Select all
Plugins.HookAddCode(this,"FormPatientEdit.butOK_Click_end",PatCur, [b]PatOld, checkSame.Checked, checkEmailPhoneSame.Checked[/b]);Code: Select all
Plugins.HookAddCode(this, "ContrAppt.OnDelete_Click_end", apt, PatCur);Code: Select all
Plugins.HookAddCode(this, "ContrAppt.ContrApptSheet2_MouseUp_end", apt, aptOld);Code: Select all
Plugins.HookAddCode(this, "ContrAppt.OnUnsched_Click_end", apt, PatCur);Code: Select all
Plugins.HookAddCode(this, "ContrAppt.OnBreak_Click_end", apt, PatCur);Code: Select all
Plugins.HookAddCode(this, "ContrAppt.OnComplete_Click_end", apt, PatCur);Code: Select all
Plugins.HookAddCode(this, "ContrAppt.OnDelete_Click_end", apt, PatCur);