diff --git a/lam/lib/baseModule.inc b/lam/lib/baseModule.inc index 29e1107f..e5ce9cd5 100644 --- a/lam/lib/baseModule.inc +++ b/lam/lib/baseModule.inc @@ -583,6 +583,22 @@ class baseModule { return $_SESSION[$this->base]->save_module_attributes($this->attributes, $this->orig); } + /** + * Allows the module to run commands after the LDAP entry was changed or created. + * + * @param boolean $newAccount new account + */ + function postModifyActions($newAccount) { + return; + } + + /** + * Allows the module to run commands after the LDAP entry was deleted. + */ + function postDeleteActions() { + return; + } + /** * Dummy function for modules which use no special options on account deletion. *