示例#1
0
 /**
  * Removes the methods that are blacklisted
  * 
  * (non-PHPdoc)
  * @see KMixinAbstract::getMethods()
  */
 public function getMethods()
 {
     $methods = parent::getMethods();
     $methods = array_diff($methods, $this->_exclude_actions);
     return $methods;
 }