mongodb\file\ActiveQuery init()

init() public method Initializes the object. This method is called at the end of the constructor. The default implementation will trigger an EVENT_INIT event. If you override this method, make sure you call the parent implementation at the end to ensure triggering of the event. public void init ( )

caching\Cache buildKey()

buildKey() public method Builds a normalized cache key from a given key. If the given key is a string containing alphanumeric characters only and no more than 32 characters, then the key will be returned back prefixed with $keyPrefix. Otherwise, a normalized key is generated by serializing the given key, applying MD5 hashing, and prefixing with $keyPrefix. public string buildKey ( $key )$key mixed The key to be normalized return string The generated cache key

rbac\PhpManager getChildren()

getChildren() public method Returns the child permissions and/or roles. public yii\rbac\Item[] getChildren ( $name )$name string The parent name return yii\rbac\Item[] The child permissions and/or roles

widgets\InputWidget hasModel()

hasModel() protected method protected boolean hasModel ( )return boolean Whether this widget is associated with a data model.

elasticsearch\DebugAction run()

run() public method public void run ( $logId, $tag )$logId $tag

sphinx\Query search()

search() public method Executes the query and returns the complete search result including e.g. hits, facets. public array search ( $db = null )$db yii\sphinx\Connection The Sphinx connection used to generate the SQL statement. return array The query results.

validators\NumberValidator $tooSmall

$tooSmall public property User-defined error message used when the value is smaller than $min. public string $tooSmall = null

authclient\Collection createClient()

createClient() protected method Creates auth client instance from its array configuration. protected yii\authclient\ClientInterface createClient ( $id, $config )$id string Auth client id. $config array Auth client instance configuration. return yii\authclient\ClientInterface Auth client instance.

data\DataProviderInterface prepare()

prepare() public abstract method Prepares the data models and keys. This method will prepare the data models and keys that can be retrieved via getModels() and getKeys(). This method will be implicitly called by getModels() and getKeys() if it has not been called before. public abstract void prepare ( $forcePrepare = false )$forcePrepare boolean Whether to force data preparation even if it has been done before.

bootstrap\NavBar $brandUrl

$brandUrl public property The URL for the brand's hyperlink tag. This parameter will be processed by yii\helpers\Url::to() and will be used for the "href" attribute of the brand link. Default value is false that means yii\web\Application::$homeUrl will be used. You may set it to null if you want to have no link at all. public array|string|boolean $brandUrl = false