bootstrap\BootstrapAsset $css

$css public property public $css = ['css/bootstrap.css']

filters\RateLimiter $request

$request public property The current request. If not set, the request application component will be used. public yii\web\Request $request = null

rbac\DbManager checkAccessRecursive()

checkAccessRecursive() protected method Performs access check for the specified user. This method is internally called by checkAccess(). protected boolean checkAccessRecursive ( $user, $itemName, $params, $assignments )$user string|integer The user ID. This should can be either an integer or a string representing the unique identifier of a user. See yii\web\User::$id. $itemName string The name of the operation that need access check $params array Name-value pairs that would be pass

db\Connection $username

$username public property The username for establishing DB connection. Defaults to null meaning no username to use. public string $username = null

elasticsearch\Connection selectActiveNode()

selectActiveNode() protected method Select active node randomly protected void selectActiveNode ( )

sphinx\QueryBuilder $querySeparator

$querySeparator public property Separator between different SQL queries. This is mainly used by build() when generating a SQL statement. public string $querySeparator = "; "

sphinx\QueryBuilder buildOrderByAndLimit()

buildOrderByAndLimit() public method Builds the ORDER BY and LIMIT/OFFSET clauses and appends them to the given SQL. public string buildOrderByAndLimit ( $sql, $orderBy, $limit, $offset )$sql string The existing SQL (without ORDER BY/LIMIT/OFFSET) $orderBy array The order by columns. See yii\sphinx\Query::orderBy() for more details on how to specify this parameter. $limit integer The limit number. See yii\sphinx\Query::limit() for more details. $offset integer The offset number. Se

sphinx\QueryBuilder callKeywords()

callKeywords() public method Builds a SQL statement for returning tokenized and normalized forms of the keywords, and, optionally, keyword statistics. public string callKeywords ( $index, $text, $fetchStatistic, &$params )$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 $params array The binding parameters that will

rbac\DbManager getRules()

getRules() public method Returns all rules available in the system. public yii\rbac\Rule[] getRules ( )return yii\rbac\Rule[] The rules indexed by the rule names

mail\BaseMailer createMessage()

createMessage() protected method Creates a new message instance. The newly created instance will be initialized with the configuration specified by $messageConfig. If the configuration does not specify a 'class', the $messageClass will be used as the class of the new message instance. protected yii\mail\MessageInterface createMessage ( )return yii\mail\MessageInterface Message instance.