Page 1 of 1

Hook request - ControlAppt.RefreshModuleScreenPeriod()

Posted: Sat Jul 17, 2021 12:09 pm
by wjstarck
Hello -

Could I have the following hook at the bottom of ControlAppt.RefreshModuleScreenPeriod()?

Code: Select all

			FillWaitingRoom();
			contrApptPanel.RedrawAsNeeded();
			Plugins.HookAddCode(this, "RefreshModuleScreenPeriod_end"); <-----------------------
		}
Right now that's after line 3440

Thanks.

Re: Hook request - ControlAppt.RefreshModuleScreenPeriod()

Posted: Mon Jul 19, 2021 9:16 am
by joes
Hello Dr. Starck,
The hook will be available in 21.2.20 which should release on 07/20/2021. The name was modified to include the class name.

Code: Select all

Plugins.HookAddCode(this,"ControlAppt.RefreshModuleScreenPeriod_end");

Re: Hook request - ControlAppt.RefreshModuleScreenPeriod()

Posted: Mon Jul 19, 2021 10:03 am
by wjstarck
Thanks Joe