code cleanup: added parent function for module_ready() and module_complete() which always return true to baseModule

This commit is contained in:
Roland Gruber 2005-08-13 09:19:40 +00:00
parent 568bb97cc1
commit 6aaae2094a
9 changed files with 23 additions and 79 deletions

View File

@ -521,6 +521,25 @@ class baseModule {
}
}
/**
* This function is used to check if this module page can be displayed.
* It returns false if a module depends on data from other modules which was not yet entered.
*
* @return boolean true, if page can be displayed
*/
function module_ready() {
return true;
}
/**
* This functions is used to check if all settings for this module have been made.
*
* @return boolean true, if settings are complete
*/
function module_complete() {
return true;
}
/**
* Checks if the attribute values follow the LDAP syntax.
* Not every LDAP attribute allows UTF-8 strings. Therefore we do a syntax check here

View File

@ -105,20 +105,13 @@ class account extends baseModule {
function load_Messages() {
}
/* This function returns true if all required attributes from other
* modules are set. This is required to prevent undefined states
*/
function module_ready() {
return true;
}
/* This functions return true
* if all needed settings are done
*/
function module_complete() {
if (!$this->module_ready()) return false;
return true;
}
}
/* This function returns a list of all html-pages in module
* This is usefull for mass upload and pdf-files

View File

@ -297,13 +297,6 @@ class inetLocalMailRecipient extends baseModule {
return $this->inputCorrect;
}
/**
* Returns true if all settings on module page are correct.
*/
function module_ready() {
return $this->inputCorrect;
}
/**
* In this function the LDAP account is built up.
*

View File

@ -344,28 +344,10 @@ class inetOrgPerson extends baseModule {
return $return;
}
/**
* Initializes the module in its accountContainer
*
* @param string $base the name of account_container in session
*/
function init($base) {
// call parent init
parent::init($base);
}
/* This function returns true if all required attributes from other
* modules are set. This is required to prevent undefined states
*/
function module_ready() {
return true;
}
/* This functions return true
* if all needed settings are done
*/
function module_complete() {
if (!$this->module_ready()) return false;
if ($this->attributes['sn'][0] == '') return false;
return true;
}

View File

@ -617,13 +617,6 @@ class kolabUser extends baseModule {
}
}
/**
* Returns true if all settings on module page are correct.
*/
function module_ready() {
return true;
}
/**
* In this function the LDAP account is built up.
*

View File

@ -247,13 +247,6 @@ class nisMailAlias extends baseModule {
return $this->inputCorrect;
}
/**
* Returns true if all settings on module page are correct.
*/
function module_ready() {
return $this->inputCorrect;
}
/**
* In this function the LDAP account is built up.
*

View File

@ -431,15 +431,10 @@ class posixAccount extends baseModule {
var $groups_orig;
var $createhomedir;
function module_ready() {
return true;
}
/* This functions return true
* if all needed settings are done
*/
function module_complete() {
if (!$this->module_ready()) return false;
if ($this->attributes['uid'][0] == '') return false;
if ($this->attributes['uidNumber'][0] == '') return false;
if ($this->attributes['gidNumber'][0] == '') return false;

View File

@ -504,18 +504,12 @@ class posixGroup extends baseModule {
* if all needed settings are done
*/
function module_complete() {
if (!$this->module_ready()) return false;
if ($this->attributes['cn'][0] == '') return false;
if ($this->attributes['gidNumber'][0] == '') return false;
return true;
}
function module_ready() {
return true;
}
/* This function returns a list of all html-pages in module
* This is usefull for mass upload and pdf-files
* because lam can walk trough all pages itself and do some

View File

@ -47,8 +47,9 @@ class shadowAccount extends baseModule {
parent::baseModule($scope);
}
/** this functin fills the error message array with messages
**/
/**
* This function builds up the message array.
*/
function load_Messages() {
// error messages for input checks
$this->messages['shadowMin'][0] = array('ERROR', _('Password minage'), _('Password minimum age must be are natural number.'));
@ -211,25 +212,6 @@ class shadowAccount extends baseModule {
return $return;
}
// Constructor
function init($base) {
// call parent init
parent::init($base);
}
function module_ready() {
return true;
}
/* This functions return true
* if all needed settings are done
*/
function module_complete() {
if (!$this->module_ready()) return false;
return true;
}
/* This function returns a list of all html-pages in module
* This is usefull for mass upload and pdf-files
* because lam can walk trough all pages itself and do some