Esempio n. 1
0
File: Node.php Progetto: narixx/zf2
 /**
  * Checks if the attribute can be set and sets it accordingly.
  *
  * @param  string  $name
  * @param  mixed   $value
  * @param  boolean $append
  * @throws \Zend\Ldap\Exception
  */
 protected function _setAttribute($name, $value, $append)
 {
     $this->_assertChangeableAttribute($name);
     Attribute::setAttribute($this->_currentData, $name, $value, $append);
 }