sphinx\Connection quoteTableName()

quoteTableName() public method Alias of quoteIndexName(). public string quoteTableName ( $name )$name string Table name return string The properly quoted table name

validators\FileValidator $minSize

$minSize public property The minimum number of bytes required for the uploaded file. Defaults to null, meaning no limit. See also $tooSmall for the customized message for a file that is too small. public integer $minSize = null

db\mssql\QueryBuilder addCommentOnColumn()

addCommentOnColumn() public method (available since version 2.0.8) Builds a SQL command for adding comment to column public string addCommentOnColumn ( $table, $column, $comment )$table string The table whose column is to be commented. The table name will be properly quoted by the method. $column string The name of the column to be commented. The column name will be properly quoted by the method. $comment string The text of the comment to be added. The comment will be properly quoted

web\Response $isServerError

$isServerError public read-only property Whether this response indicates a server error public boolean getIsServerError ( )

validators\IpValidator $ranges

$ranges public property The IPv4 or IPv6 ranges that are allowed or forbidden. When the array is empty, or the option not set, all IP addresses are allowed. Otherwise, the rules are checked sequentially until the first match is found. An IP address is forbidden, when it has not matched any of the rules. Example: [ 'ranges' => [ '192.168.10.128' '!192.168.10.0/24', 'any' // allows any other IP addresses ] ] In this example, access is allowed for all t

web\View endBody()

endBody() public method Marks the ending of an HTML body section. public void endBody ( )

swiftmailer\Message $textBody

$textBody public write-only property Message plain text content. public $this setTextBody ( $text )

sphinx\ActiveRecord insert()

insert() public method Inserts a row into the associated Sphinx index using the attribute values of this record. This method performs the following steps in order: call beforeValidate() when $runValidation is true. If validation fails, it will skip the rest of the steps; call afterValidate() when $runValidation is true. call beforeSave(). If the method returns false, it will skip the rest of the steps; insert the record into index. If this fails, it will skip the rest of the steps; call aft

data\ActiveDataProvider $query

$query public property The query that is used to fetch data models and $totalCount if it is not explicitly set. public yii\db\QueryInterface $query = null

validators\CompareValidator $type

$type public property The type of the values being compared. The follow types are supported: string: the values are being compared as strings. No conversion will be done before comparison. number: the values are being compared as numbers. String values will be converted into numbers before comparison. public string $type = self::TYPE_STRING