rest\Action $checkAccess

$checkAccess public property A PHP callable that will be called when running an action to determine if the current user has the permission to execute the action. If not set, the access check will not be performed. The signature of the callable should be as follows, function ($action, $model = null) { // $model is the requested model instance. // If null, it means no specific model (e.g. IndexAction) } public callable $checkAccess = null

sphinx\QueryBuilder replace()

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

grid\Column $content

$content public property This is a callable that will be used to generate the content of each cell. The signature of the function should be the following: function ($model, $key, $index, $column). Where $model, $key, and $index refer to the model, key and index of the row currently being rendered and $column is a reference to the yii\grid\Column object. public callable $content = null

validators\DateValidator $type

$type public property (available since version 2.0.8) The type of the validator. Indicates, whether a date, time or datetime value should be validated. This property influences the default value of $format and also sets the correct behavior when $format is one of the intl short formats, short, medium, long, or full. This is only effective when the PHP intl extension is installed. This property can be set to the following values: TYPE_DATE - (default) for validating date values only, that m

smarty\ViewRenderer $extensionClass

$extensionClass public property Extension class name public string $extensionClass = '\yii\smarty\Extension'

console\Application init()

init() public method Initialize the application. public void init ( )

mongodb\rbac\MongoDbManager init()

init() public method Initializes the application component. This method overrides the parent implementation by establishing the MongoDB connection. public void init ( )

rest\Serializer serializeDataProvider()

serializeDataProvider() protected method Serializes a data provider. protected array serializeDataProvider ( $dataProvider )$dataProvider yii\data\DataProviderInterface return array The array representation of the data provider.

rbac\DbManager $parents

$parents protected property Auth item parent-child relationships (childName => list of parents) protected array $parents = null

web\AssetBundle $depends

$depends public property List of bundle class names that this bundle depends on. For example: public $depends = [ 'yii\web\YiiAsset', 'yii\bootstrap\BootstrapAsset', ]; public array $depends = []