new type API
This commit is contained in:
parent
5d10297448
commit
eaa09a2799
|
@ -529,6 +529,9 @@ class posixAccount extends baseModule implements passwordService {
|
|||
public function getManagedAttributes($typeId) {
|
||||
$attrs = parent::getManagedAttributes($typeId);
|
||||
$typeManager = new TypeManager();
|
||||
if (!$typeManager->hasConfig()) {
|
||||
return $attrs;
|
||||
}
|
||||
$modules = $typeManager->getConfiguredType($typeId)->getModules();
|
||||
if ($this->manageCn($modules)) {
|
||||
$attrs[] = 'cn';
|
||||
|
|
|
@ -393,7 +393,9 @@ class TypeManager {
|
|||
* @return \LAM\TYPES\ConfiguredType|NULL type
|
||||
*/
|
||||
public function getConfiguredType($typeId) {
|
||||
$configuredTypes = array();
|
||||
if ($this->config == null) {
|
||||
return null;
|
||||
}
|
||||
$activeTypes = $this->config->get_ActiveTypes();
|
||||
if (in_array($typeId, $activeTypes)) {
|
||||
return $this->buildConfiguredType($typeId);
|
||||
|
@ -485,6 +487,15 @@ class TypeManager {
|
|||
return $this->config;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns if configuration is loaded.
|
||||
*
|
||||
* @return boolean configured
|
||||
*/
|
||||
public function hasConfig() {
|
||||
return !empty($this->config);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in New Issue