isActive() защищенный Метод

Returns a value indicating whether the filter is active for the given action.
protected isActive ( Action $action ) : boolean
$action Action the action being filtered
Результат boolean whether the filter is active for the given action.
Пример #1
0
 /**
  * {@inheritdoc}
  */
 protected function isActive($action)
 {
     return parent::isActive($action) || $this->isOptional($action);
 }