rbac\PhpManager addRule()

addRule() protected method Adds a rule to the RBAC system. protected boolean addRule ( $rule )$rule yii\rbac\Rule The rule to add return boolean Whether the rule is successfully added to the system throws Exception if data validation or saving fails (such as the name of the rule is not unique)

data\Pagination $forcePageParam

$forcePageParam public property Whether to always have the page parameter in the URL created by createUrl(). If false and $page is 0, the page parameter will not be put in the URL. public boolean $forcePageParam = true

filters\Cors beforeAction()

beforeAction() public method This method is invoked right before an action is to be executed (after all possible filters.) You may override this method to do last-minute preparation for the action. public boolean beforeAction ( $action )$action yii\base\Action The action to be executed. return boolean Whether the action should continue to be executed.

db\Command addColumn()

addColumn() public method Creates a SQL command for adding a new DB column. public $this addColumn ( $table, $column, $type )$table string The table that the new column will be added to. The table name will be properly quoted by the method. $column string The name of the new column. The name will be properly quoted by the method. $type string The column type. yii\db\QueryBuilder::getColumnType() will be called to convert the give column type to the physical one. For example, string w

mongodb\Command addUpdate()

addUpdate() public method Adds the update operation to the batch command. See also executeBatch(). public $this addUpdate ( $condition, $document, $options = [] )$condition array Filter condition $document array Data to be updated $options array Update options. return $this Self reference.

sphinx\Command callKeywords()

callKeywords() public method Returns tokenized and normalized forms of the keywords, and, optionally, keyword statistics. public $this callKeywords ( $index, $text, $fetchStatistic = false )$index string The name of the index from which to take the text processing settings $text string The text to break down to keywords. $fetchStatistic boolean Whether to return document and hit occurrence statistics return $this The command object itself

widgets\LinkPager renderPageButtons()

renderPageButtons() protected method Renders the page buttons. protected string renderPageButtons ( )return string The rendering result

faker\FixtureController beforeAction()

beforeAction() public method This method is invoked right before an action is executed. The method will trigger the EVENT_BEFORE_ACTION event. The return value of the method will determine whether the action should continue to run. In case the action should not run, the request should be handled inside of the beforeAction code by either providing the necessary output or redirecting the request. Otherwise the response will be empty. If you override this method, your code should look like the

mongodb\console\controllers\MigrateController beforeAction()

beforeAction() public method This method is invoked right before an action is to be executed (after all possible filters.) It checks the existence of the $migrationPath. public boolean beforeAction ( $action )$action yii\base\Action The action to be executed. return boolean Whether the action should continue to be executed. throws yii\console\Exception if db component isn't configured

console\controllers\MessageController $only

$only public property List of patterns that specify which files (not directories) should be processed. If empty or not set, all files will be processed. See helpers/FileHelper::findFiles() description for pattern matching rules. If a file/directory matches both a pattern in "only" and "except", it will NOT be processed. public array $only = ['*.php']