db\mysql\QueryBuilder checkIntegrity()

checkIntegrity() public method Builds a SQL statement for enabling or disabling integrity check. public string checkIntegrity ( $check = true, $schema = '', $table = '' )$check boolean Whether to turn on or off the integrity check. $schema string The schema of the tables. Meaningless for MySQL. $table string The table name. Meaningless for MySQL. return string The SQL statement for checking integrity

sphinx\Schema quoteIndexName()

quoteIndexName() public method Quotes a index name for use in a query. If the index name contains schema prefix, the prefix will also be properly quoted. If the index name is already quoted or contains '(' or '{{', then this method will do nothing. See also \yii\sphinx\quoteSimpleTableName. public string quoteIndexName ( $name )$name string Index name return string The properly quoted index name

di\Instance of()

of() public static method Creates a new Instance object. public static yii\di\Instance of ( $id )$id string The component ID return yii\di\Instance The new Instance object.

base\ActionEvent __construct()

__construct() public method Constructor. public void __construct ( $action, $config = [] )$action yii\base\Action The action associated with this action event. $config array Name-value pairs that will be used to initialize the object properties

gii\generators\controller\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

web\Request $acceptableContentTypes

$acceptableContentTypes public property The content types ordered by the quality score. Types with the highest scores will be returned first. The array keys are the content types, while the array values are the corresponding quality score and other parameters as given in the header. public array getAcceptableContentTypes ( )public void setAcceptableContentTypes ( $value )

elasticsearch\ActiveRecord attributes()

attributes() public method Returns the list of all attribute names of the model. This method must be overridden by child classes to define available attributes. Attributes are names of fields of the corresponding elasticsearch document. The primaryKey for elasticsearch documents is the _id field by default which is not part of the attributes. You may define path mapping for the _id field so that it is part of the _source fields and thus becomes part of the attributes. public string[] attr

helpers\BaseFormatConverter convertDatePhpToJui()

convertDatePhpToJui() public static method Converts a date format pattern from [php date() function format][] to [jQuery UI date format][]. The conversion is limited to date patterns that do not use escaped characters. Patterns like jS \o\f F Y which will result in a date like 1st of December 2014 may not be converted correctly because of the use of escaped characters. Pattern constructs that are not supported by the jQuery UI format will be removed. public static string convertDatePhpToJ

db\Query andHaving()

andHaving() public method Adds an additional HAVING condition to the existing one. The new condition and the existing one will be joined using the 'AND' operator. See also: having() orHaving() public $this andHaving ( $condition, $params = [] )$condition string|array|yii\db\Expression The new HAVING condition. Please refer to where() on how to specify this parameter. $params array The parameters (name => value) to be bound to the query. return $this The query object itself

base\ErrorException __construct()

__construct() public method Constructs the exception. public void __construct ( $message = '', $code = 0, $severity = 1, $filename = __FILE__, $lineno = __LINE__, Exception $previous = null )$message [optional] $code [optional] $severity [optional] $filename [optional] $lineno [optional] $previous [optional]