web\UrlManager $showScriptName

$showScriptName public property Whether to show entry script name in the constructed URL. Defaults to true. This property is used only if $enablePrettyUrl is true. public boolean $showScriptName = true

sphinx\gii\model\Generator getDescription()

getDescription() public method public string getDescription ( )return string The detailed description of the generator.

filters\AccessControl $rules

$rules public property A list of access rule objects or configuration arrays for creating the rule objects. If a rule is specified via a configuration array, it will be merged with $ruleConfig first before it is used for creating the rule object. See also $ruleConfig. public array $rules = []

console\Application getRequest()

getRequest() public method Returns the request component. public yii\console\Request getRequest ( )return yii\console\Request The request component.

web\Request getUrl()

getUrl() public method Returns the currently requested relative URL. This refers to the portion of the URL that is after the $hostInfo part. It includes the $queryString part if any. public string getUrl ( )return string The currently requested relative URL. Note that the URI returned is URL-encoded. throws yii\base\InvalidConfigException if the URL cannot be determined due to unusual server configuration

db\Migration insert()

insert() public method Creates and executes an INSERT SQL statement. The method will properly escape the column names, and bind the values to be inserted. public void insert ( $table, $columns )$table string The table that new rows will be inserted into. $columns array The column data (name => value) to be inserted into the table.

base\Component __set()

__set() public method Sets the value of a component property. This method will check in the following order and act accordingly: a property defined by a setter: set the property value an event in the format of "on xyz": attach the handler to the event "xyz" a behavior in the format of "as xyz": attach the behavior named as "xyz" a property of a behavior: set the behavior property value Do not call this method directly as it is a PHP magic method that will be implicitly called when executing

twig\ViewRenderer $filters

$filters public property Custom filters. Keys of the array are names to call in template, values are names of functions or static methods of some class. Example: ['rot13' => 'str_rot13', 'jsonEncode' => '\yii\helpers\Json::encode']. In the template you can use it like this: {{ 'test'|rot13 }} or {{ model|jsonEncode }}. public array $filters = []

filters\ContentNegotiator bootstrap()

bootstrap() public method Bootstrap method to be called during application bootstrap stage. public void bootstrap ( $app )$app yii\base\Application The application currently running

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.