added postModifyActions() and postDeleteActions()

This commit is contained in:
Roland Gruber 2007-02-22 18:25:24 +00:00
parent 26c6ea899d
commit d4b5748788
1 changed files with 16 additions and 0 deletions

View File

@ -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.
*