debug\panels\ConfigPanel getDetail()

getDetail() public method public string getDetail ( )return string Content that is displayed in debugger detail view

db\cubrid\Schema loadColumnSchema()

loadColumnSchema() protected method Loads the column information into a yii\db\ColumnSchema object. protected yii\db\ColumnSchema loadColumnSchema ( $info )$info array Column information return yii\db\ColumnSchema The column schema object

db\cubrid\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

db\Query params()

params() public method Sets the parameters to be bound to the query. See also addParams(). public $this params ( $params )$params array List of query parameter values indexed by parameter placeholders. For example, [':name' => 'Dan', ':age' => 31]. return $this The query object itself

db\TableSchema getColumn()

getColumn() public method Gets the named column metadata. This is a convenient method for retrieving a named column even if it does not exist. public yii\db\ColumnSchema getColumn ( $name )$name string Column name return yii\db\ColumnSchema Metadata of the named column. Null if the named column does not exist.

elasticsearch\Command $type

$type public property The types to execute the query on. Defaults to null meaning all types public string|array $type = null

db\QueryInterface indexBy()

indexBy() public abstract method Sets the indexBy() property. public abstract $this indexBy ( $column )$column string|callable The name of the column by which the query results should be indexed by. This can also be a callable (e.g. anonymous function) that returns the index value based on the given row data. The signature of the callable should be: function ($row) { // return the index value corresponding to $row } return $this The query object itself

db\QueryInterface filterWhere()

filterWhere() public abstract method Sets the WHERE part of the query ignoring empty parameters. See also: andFilterWhere() orFilterWhere() public abstract $this filterWhere ( array $condition )$condition array The conditions that should be put in the WHERE part. Please refer to where() on how to specify this parameter. return $this The query object itself

db\QueryInterface where()

where() public abstract method Sets the WHERE part of the query. The $condition specified as an array can be in one of the following two formats: hash format: ['column1' => value1, 'column2' => value2, ...] operator format: [operator, operand1, operand2, ...] A condition in hash format represents the following SQL expression in general: column1=value1 AND column2=value2 AND .... In case when a value is an array, an IN expression will be generated. And if a value is null, IS NULL wil

validators\ImageValidator $underHeight

$underHeight public property The error message used when the image is under $minHeight. You may use the following tokens in the message: {attribute}: the attribute name {file}: the uploaded file name {limit}: the value of $minHeight public string $underHeight = null