log\Dispatcher $targets

$targets public property The log targets. Each array element represents a single log target instance or the configuration for creating the log target instance. public array|yii\log\Target[] $targets = []

gii\console\GenerateController getActionHelp()

getActionHelp() public method Returns the detailed help information for the specified action. public string getActionHelp ( $action )$action yii\base\Action Action to get help for return string The detailed help information for the specified action.

db\Connection $schemaCacheExclude

$schemaCacheExclude public property List of tables whose metadata should NOT be cached. Defaults to empty array. The table names may contain schema prefix, if any. Do not quote the table names. See also $enableSchemaCache. public array $schemaCacheExclude = []

gii\generators\extension\Generator requiredTemplates()

requiredTemplates() public method Returns a list of code template files that are required. Derived classes usually should override this method if they require the existence of certain template files. public array requiredTemplates ( )return array List of code template files that are required. They should be file paths relative to $templatePath.

base\Component detachBehavior()

detachBehavior() public method Detaches a behavior from the component. The behavior's yii\base\Behavior::detach() method will be invoked. public null|yii\base\Behavior detachBehavior ( $name )$name string The behavior's name. return null|yii\base\Behavior The detached behavior. Null if the behavior does not exist.

widgets\DetailView $model

$model public property The data model whose details are to be displayed. This can be a yii\base\Model instance, an associative array, an object that implements yii\base\Arrayable interface or simply an object with defined public accessible non-static properties. public array|object $model = null

sphinx\QueryBuilder insert()

insert() public method Creates an INSERT SQL statement. For example, $sql = $queryBuilder->insert('idx_user', [ 'name' => 'Sam', 'age' => 30, 'id' => 10, ], $params); The method will properly escape the index and column names. public string insert ( $index, $columns, &$params )$index string The index that new rows will be inserted into. $columns array The column data (name => value) to be inserted into the index. $params array The binding parameters th

filters\auth\AuthMethod handleFailure()

handleFailure() public method Handles authentication failure. The implementation should normally throw UnauthorizedHttpException to indicate authentication failure. public void handleFailure ( $response )$response yii\web\Response throws yii\web\UnauthorizedHttpException

authclient\clients\YandexOpenId $requiredAttributes

$requiredAttributes public property List of attributes, which always should be returned from server. Attribute names should be always specified in AX format. For example: ['namePerson/friendly', 'contact/email'] List of attributes, which always should be returned from server. Attribute names should be always specified in AX format. For example: ['namePerson/friendly', 'contact/email'] public array $requiredAttributes = ['namePerson', 'contact/email']

data\BaseDataProvider getKeys()

getKeys() public method Returns the key values associated with the data models. public array getKeys ( )return array The list of key values corresponding to $models. Each data model in $models is uniquely identified by the corresponding key value in this array.