deoPostInstallTrigger
deoPostInstallTrigger(g_application l_args) =>g_value
Description
The post-install trigger is called after all other processing is done, including installation of banner menu, toolbar, assistant, bindkeys. This is provided for those applications that need to finish up any initialization that must occur after GUI is installed.
Arguments
Value Returned
Example
let(()
defmethod( deoEnableTrigger( (this MyPlugin) @optional args)
mylicenseCheck( args))
defmethod( deoMenuTrigger( (this MyPlugin) args)
(if (eq args->action 'activate)
append( args->bannerMenus (myMenuMaker args))
;;else
(when (eq args->action 'deactivate)
(remove_my_plugin_menu args->bannerMenu))))
defmethod( deoPostInstallTrigger((this MyPlugin) args)
(my_post_installer args)
t )
defmethod( deoExitTrigger((this MyPlugin) @optional args)
(my_pre_exit_process args)
t )
) ;; End of MyPlugin
Return to top