web\DbSession $sessionTable

$sessionTable public property The name of the DB table that stores the session data. The table should be pre-created as follows: CREATE TABLE session ( id CHAR(40) NOT NULL PRIMARY KEY, expire INTEGER, data BLOB ) where 'BLOB' refers to the BLOB-type of your preferred DBMS. Below are the BLOB type that can be used for some popular DBMS: MySQL: LONGBLOB PostgreSQL: BYTEA MSSQL: BLOB When using DbSession in a production server, we recommend you create a DB index for the 'expire'

validators\EmailValidator $fullPattern

$fullPattern public property The regular expression used to validate email addresses with the name part. This property is used only when $allowName is true. See also $allowName. public string $fullPattern = '/^[^@]*<[a-zA-Z0-9!#$%&\'*+\\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&\'*+\\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?>$/'

validators\FileValidator validateValue()

validateValue() protected method Validates a value. A validator class can implement this method to support data validation out of the context of a data model. protected array|null validateValue ( $file )$file return array|null The error message and the parameters to be inserted into the error message. Null should be returned if the data is valid. throws yii\base\NotSupportedException if the validator does not supporting data validation without a model

gii\generators\crud\Generator generateSearchConditions()

generateSearchConditions() public method Generates search conditions public array generateSearchConditions ( )

gii\generators\crud\Generator $columnNames

$columnNames public read-only property Model column names public array getColumnNames ( )

base\InvalidCallException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

base\Controller renderFile()

renderFile() public method Renders a view file. public string renderFile ( $file, $params = [] )$file string The view file to be rendered. This can be either a file path or a path alias. $params array The parameters (name-value pairs) that should be made available in the view. return string The rendering result. throws yii\base\InvalidParamException if the view file does not exist.

validators\StringValidator $tooShort

$tooShort public property User-defined error message used when the length of the value is smaller than $min. public string $tooShort = null

db\QueryTrait $orderBy

$orderBy public property How to sort the query results. This is used to construct the ORDER BY clause in a SQL statement. The array keys are the columns to be sorted by, and the array values are the corresponding sort directions which can be either SORT_ASC or SORT_DESC. The array may also contain yii\db\Expression objects. If that is the case, the expressions will be converted into strings without any change. public array $orderBy = null

authclient\BaseOAuth sendRequest()

sendRequest() protected method Sends HTTP request. protected array sendRequest ( $method, $url, array $params = [], array $headers = [] )$method string Request type. $url string Request URL. $params array Request params. $headers array Additional request headers. return array Response. throws yii\base\Exception on failure.