implemented profile loading
This commit is contained in:
parent
39d5b8078c
commit
66f164dd6a
|
@ -111,6 +111,12 @@ class inetOrgPerson extends baseModule {
|
|||
'type' => 'ext_preg',
|
||||
'regex' => 'employeeType',
|
||||
'error_message' => $this->messages['employeeType'][0]);
|
||||
// profile mappings
|
||||
$return['profile_mappings'] = array(
|
||||
'inetOrgPerson_title' => 'title',
|
||||
'inetOrgPerson_employeeType' => 'employeeType'
|
||||
);
|
||||
// upload fields
|
||||
$return['upload_columns'] = array(
|
||||
array(
|
||||
'name' => 'inetOrgPerson_cn',
|
||||
|
|
|
@ -113,8 +113,13 @@ class posixAccount extends baseModule {
|
|||
// RDN attributes
|
||||
$return["RDN"] = array("uid" => "normal", "cn" => "low");
|
||||
// profile checks
|
||||
$return['profile_checks']['posixAccount_homeDirectory'] = array('type' => 'regex_i', 'regex' => 'homeDirectory',
|
||||
$return['profile_checks']['posixAccount_homeDirectory'] = array('type' => 'ext_preg', 'regex' => 'homeDirectory',
|
||||
'error_message' => $this->messages['homeDirectory'][0]);
|
||||
// profile mappings
|
||||
$return['profile_mappings'] = array(
|
||||
'posixAccount_homeDirectory' => 'homeDirectory',
|
||||
'posixAccount_loginShell' => 'loginShell'
|
||||
);
|
||||
// configuration options
|
||||
$return['config_options']['user'] = array(
|
||||
array(
|
||||
|
@ -951,6 +956,36 @@ class posixAccount extends baseModule {
|
|||
return $return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the values of an account profile into internal variables.
|
||||
*
|
||||
* @param array $profile hash array with profile values (identifier => value)
|
||||
*/
|
||||
function load_profile($profile) {
|
||||
// profile mappings in meta data
|
||||
parent::load_profile($profile);
|
||||
// special profile options
|
||||
// GID
|
||||
if (isset($profile['posixAccount_primaryGroup'][0])) {
|
||||
$gid = $_SESSION['cache']->getgid($profile['posixAccount_primaryGroup'][0]);
|
||||
if (isset($gid)) {
|
||||
$this->attributes['gidNumber'][0] = $gid;
|
||||
}
|
||||
}
|
||||
// other group memberships
|
||||
if (isset($profile['posixAccount_additionalGroup'][0])) {
|
||||
$this->groups = $profile['posixAccount_additionalGroup'];
|
||||
}
|
||||
// no password
|
||||
if (isset($profile['posixAccount_userPassword_no'][0])) {
|
||||
$this->userPassword_nopassword = $profile['posixAccount_userPassword_no'][0];
|
||||
}
|
||||
// locked password
|
||||
if (isset($profile['posixAccount_userPassword_lock'][0])) {
|
||||
$this->userPassword_lock = $profile['posixAccount_userPassword_lock'][0];
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* (non-PHPDoc)
|
||||
* @see baseModule#get_pdfEntries
|
||||
|
|
Loading…
Reference in New Issue