Commit 901d753c by Qiang Xue

doc improvement.

parent d8b6335d
...@@ -16,10 +16,13 @@ class ActionFilter extends Behavior ...@@ -16,10 +16,13 @@ class ActionFilter extends Behavior
/** /**
* @var array list of action IDs that this filter should apply to. If this property is not set, * @var array list of action IDs that this filter should apply to. If this property is not set,
* then the filter applies to all actions, unless they are listed in [[except]]. * then the filter applies to all actions, unless they are listed in [[except]].
* If an action ID appears in both [[only]] and [[except]], this filter will NOT apply to it.
* @see except
*/ */
public $only; public $only;
/** /**
* @var array list of action IDs that this filter should not apply to. * @var array list of action IDs that this filter should not apply to.
* @see only
*/ */
public $except = array(); public $except = array();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment