web\GroupUrlRule $ruleConfig

$ruleConfig public property The default configuration of URL rules. Individual rule configurations specified via $rules will take precedence when the same property of the rule is configured. public array $ruleConfig = ['class' => 'yii\web\UrlRule']

authclient\clients\Twitter $attributeParams

$attributeParams public property (available since version 2.0.6) List of extra parameters, which should be used, while requesting user attributes from Twitter API. For example: [ 'include_email' => 'true' ] See also https://dev.twitter.com/rest/reference/get/account/verify_credentials. public array $attributeParams = []

db\BaseActiveRecord getOldAttributes()

getOldAttributes() public method Returns the old attribute values. public array getOldAttributes ( )return array The old attribute values (name-value pairs)

faker\FixtureController $providers

$providers public property Additional data providers that can be created by user and will be added to the Faker generator. More info in Faker library docs. public array $providers = []

db\Query $params

$params public property List of query parameter values indexed by parameter placeholders. For example, [':name' => 'Dan', ':age' => 31]. public array $params = []

mongodb\Cache setValue()

setValue() protected method Stores a value identified by a key in cache. This method should be implemented by child classes to store the data in specific cache storage. protected boolean setValue ( $key, $value, $expire )$key string The key identifying the value to be cached $value string The value to be cached $expire integer The number of seconds in which the cached value will expire. 0 means never expire. return boolean True if the value is successfully stored into cache, false

faker\FixtureController options()

options() public method Returns the names of valid options for the action (id) An option requires the existence of a public member variable whose name is the option name. Child classes may override this method to specify possible options. Note that the values setting via options are not available until beforeAction() is being called. public array options ( $actionID )$actionID string The action id of the current request return array The names of the options valid for the action

elasticsearch\Query column()

column() public method Executes the query and returns the first column of the result. public array column ( $field, $db = null )$field string The field to query over $db yii\elasticsearch\Connection The database connection used to execute the query. If this parameter is not given, the elasticsearch application component will be used. return array The first column of the query result. An empty array is returned if the query results in nothing.

sphinx\QueryBuilder buildOrderBy()

buildOrderBy() public method public string buildOrderBy ( $columns )$columns array return string The ORDER BY clause built from \yii\sphinx\query.

gii\generators\form\Generator generate()

generate() public method Generates the code based on the current user input and the specified code template files. This is the main method that child classes should implement. Please refer to yii\gii\generators\controller\Generator::generate() as an example on how to implement this method. public yii\gii\CodeFile[] generate ( )return yii\gii\CodeFile[] A list of code files to be created.