예제 #1
0
파일: acluser.php 프로젝트: fchaose/qeephp
 /**
  * 撤销插件绑定
  */
 function unbind()
 {
     parent::unbind();
     $pn = $this->_settings['password_prop'];
     if (is_null($this->_saved_state['password_prop'])) {
         unset($this->_meta->update_reject[$pn]);
     } else {
         $this->_meta->update_reject[$pn] = $this->_saved_state['password_prop'];
     }
 }
예제 #2
0
파일: tree.php 프로젝트: fchaose/qeephp
 /**
  * 撤销绑定
  */
 function unbind()
 {
     parent::unbind();
     $this->_meta->removeAssoc($this->_settings['childs_mapping']);
     $this->_meta->removeAssoc($this->_settings['parent_mapping']);
 }