/** * This function loads all needed attributes into the object. * * @param array $attr an array as it is returned from ldap_get_attributes */ function load_attributes($attr) { $this->attributes['objectClass'] = array(); $this->attributes['macAddress'] = array(); $this->orig['objectClass'] = array(); $this->orig['macAddress'] = array(); if (isset($attr['objectClass'])) { $this->attributes['objectClass'] = $attr['objectClass']; $this->orig['objectClass'] = $attr['objectClass']; } if (isset($attr['macAddress'])) { $this->attributes['macAddress'] = $attr['macAddress']; $this->orig['macAddress'] = $attr['macAddress']; } return 0; } |
/** * This function will create the meta HTML code to show a page with all attributes. * * @return htmlElement HTML meta data */ function display_html_attributes() { $return = new htmlTable(); $macCount = 0; // list current MACs if (isset($this->attributes['macAddress'])) { $macCount = sizeof($this->attributes['macAddress']); for ($i = 0; $i < sizeof($this->attributes['macAddress']); $i++) { $return->addElement(new htmlOutputText(_('MAC address'))); $macInput = new htmlInputField('macAddress' . $i, $this->attributes['macAddress'][$i]); $macInput->setFieldSize(17); $macInput->setFieldMaxLength(17); $return->addElement($macInput); $return->addElement(new htmlButton('delMAC' . $i, 'del.png', true)); $return->addElement(new htmlHelpLink('mac'), true); } } // input box for new MAC $return->addElement(new htmlOutputText(_('New MAC address'))); $newMacInput = new htmlInputField('macAddress', ''); $newMacInput->setFieldSize(17); $newMacInput->setFieldMaxLength(17); $return->addElement($newMacInput); $return->addElement(new htmlButton('addMAC', 'add.png', true)); $return->addElement(new htmlHelpLink('mac')); $return->addElement(new htmlHiddenInput('mac_number', $macCount)); return $return; } |
/** * Write variables into object and do some regex checks * * @param array $post HTTP-POST values */ function process_attributes($post) { $errors = array(); $this->attributes['macAddress'] = array(); // check old MACs if (isset($post['mac_number'])) { for ($i = 0; $i < $post['mac_number']; $i++) { if (isset($post['delMAC' . $i])) continue; if (isset($post['macAddress' . $i]) && ($post['macAddress' . $i] != "")) { // check if address has correct format if (!get_preg($post['macAddress' . $i], 'macAddress')) { $message = $this->messages['mac'][0]; $message[] = $post['macAddress' . $i]; $errors[] = $message; } $this->attributes['macAddress'][] = $post['macAddress' . $i]; } } } // check new MAC if (isset($post['macAddress']) && ($post['macAddress'] != "")) { // check if address has correct format if (get_preg($post['macAddress'], 'macAddress')) { $this->attributes['macAddress'][] = $post['macAddress']; } else { $message = $this->messages['mac'][0]; $message[] = $post['macAddress']; $errors[] = $message; } } $this->attributes['macAddress'] = array_unique($this->attributes['macAddress']); return $errors; } |
/** * 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() { if ($_SESSION[$this->base]->module['posixAccount']->attributes['gidNumber'][0]=='') return false; if ($_SESSION[$this->base]->module['posixAccount']->attributes['uidNumber'][0]=='') return false; if ($this->attributes['uid'][0]=='') return false; 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() { if (!$this->module_ready()) return false; if ($this->attributes['sambaSID'][0] == '') return false; return true; } |
/** * Returns a list of modifications which have to be made to the LDAP account. * * @return array list of modifications * <br>This function returns an array with 3 entries: * <br>array( DN1 ('add' => array($attr), 'remove' => array($attr), 'modify' => array($attr)), DN2 .... ) * <br>DN is the DN to change. It may be possible to change several DNs (e.g. create a new user and add him to some groups via attribute memberUid) * <br>"add" are attributes which have to be added to LDAP entry * <br>"remove" are attributes which have to be removed from LDAP entry * <br>"modify" are attributes which have to been modified in LDAP entry */ function save_attributes() { // add object class if needed if (!isset($this->attributes['objectClass']) || !in_array('kolabInetOrgPerson', $this->attributes['objectClass'])) { $this->attributes['objectClass'][] = 'kolabInetOrgPerson'; } return parent::save_attributes(); } |