test\BaseActiveFixture $dataFile

$dataFile public property The file path or path alias of the data file that contains the fixture data to be returned by getData(). You can set this property to be false to prevent loading any data. public string|boolean $dataFile = null

rbac\DbManager getInheritedPermissionsByUser()

getInheritedPermissionsByUser() protected method (available since version 2.0.7) Returns all permissions that the user inherits from the roles assigned to him. protected yii\rbac\Permission[] getInheritedPermissionsByUser ( $userId )$userId string|integer The user ID (see yii\web\User::$id) return yii\rbac\Permission[] All inherited permissions that the user has. The array is indexed by the permission names.

sphinx\gii\model\Generator hints()

hints() public method Returns the list of hint messages. The array keys are the attribute names, and the array values are the corresponding hint messages. Hint messages will be displayed to end users when they are filling the form for the generator. public array hints ( )return array The list of hint messages

db\Command prepare()

prepare() public method Prepares the SQL statement to be executed. For complex SQL statement that is to be executed multiple times, this may improve performance. For SQL statement with binding parameters, this method is invoked automatically. public void prepare ( $forRead = null )$forRead boolean Whether this method is called for a read query. If null, it means the SQL statement should be used to determine whether it is for read or write. throws yii\db\Exception if there is any DB err

sphinx\gii\model\Generator generateLabels()

generateLabels() public method Generates the attribute labels for the specified table. public array generateLabels ( $table )$table yii\db\TableSchema The table schema return array The generated attribute labels (name => label)

captcha\CaptchaAction renderImage()

renderImage() protected method Renders the CAPTCHA image. protected string renderImage ( $code )$code string The verification code return string Image contents throws yii\base\InvalidConfigException if imageLibrary is not supported

db\mssql\Schema findTableNames()

findTableNames() protected method Returns all table names in the database. protected array findTableNames ( $schema = '' )$schema string The schema of the tables. Defaults to empty string, meaning the current or default schema. return array All table names in the database. The names have NO schema name prefix.

db\mssql\QueryBuilder getAllColumnNames()

getAllColumnNames() protected method Returns an array of column names given model name protected array|null getAllColumnNames ( $modelClass = null )$modelClass string Name of the model class return array|null Array of column names

web\JsExpression __construct()

__construct() public method Constructor. public void __construct ( $expression, $config = [] )$expression string The JavaScript expression represented by this object $config array Additional configurations for this object

elasticsearch\Query timeout()

timeout() public method Sets the search timeout. See also http://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#_parameters_5. public $this timeout ( $timeout )$timeout integer A search timeout, bounding the search request to be executed within the specified time value and bail with the hits accumulated up to that point when expired. Defaults to no timeout. return $this The query object itself