fixed message loading
This commit is contained in:
parent
eb8297385c
commit
d4710f6141
lam/lib
|
@ -70,10 +70,17 @@ class baseModule {
|
||||||
*/
|
*/
|
||||||
function baseModule($scope) {
|
function baseModule($scope) {
|
||||||
$this->scope = $scope;
|
$this->scope = $scope;
|
||||||
|
$this->load_Messages();
|
||||||
$this->meta = $this->get_metaData();
|
$this->meta = $this->get_metaData();
|
||||||
if (isset($_SESSION['config'])) $this->moduleSettings = $_SESSION['config']->get_moduleSettings();
|
if (isset($_SESSION['config'])) $this->moduleSettings = $_SESSION['config']->get_moduleSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This function fills the $messages variable with output messages from this module.
|
||||||
|
*/
|
||||||
|
function load_Messages() {
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes the module after it became part of an accountContainer
|
* Initializes the module after it became part of an accountContainer
|
||||||
*
|
*
|
||||||
|
@ -90,7 +97,6 @@ class baseModule {
|
||||||
}
|
}
|
||||||
$objectClassName = substr($_SESSION['ldap']->objectClasses[$line], 6+strpos($_SESSION['ldap']->objectClasses[$line], "NAME '"), strlen(get_class($this)) );
|
$objectClassName = substr($_SESSION['ldap']->objectClasses[$line], 6+strpos($_SESSION['ldap']->objectClasses[$line], "NAME '"), strlen(get_class($this)) );
|
||||||
$this->attributes['objectClass'][0] = $objectClassName;
|
$this->attributes['objectClass'][0] = $objectClassName;
|
||||||
$this->load_Messages();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue