redis\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. public array attributes ( )return array List of attribute names.

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

helpers\BaseArrayHelper htmlDecode()

htmlDecode() public static method Decodes HTML entities into the corresponding characters in an array of strings. Only array values will be decoded by default. If a value is an array, this method will also decode it recursively. Only string values will be decoded. See also http://www.php.net/manual/en/function.htmlspecialchars-decode.php. public static array htmlDecode ( $data, $valuesOnly = true )$data array Data to be decoded $valuesOnly boolean Whether to decode array values only. I

db\sqlite\QueryBuilder addForeignKey()

addForeignKey() public method Builds a SQL statement for adding a foreign key constraint to an existing table. The method will properly quote the table and column names. public string addForeignKey ( $name, $table, $columns, $refTable, $refColumns, $delete = null, $update = null )$name string The name of the foreign key constraint. $table string The table that the foreign key constraint will be added to. $columns string|array The name of the column to that the constraint will be ad

debug\Module $fileMode

$fileMode public property (available since version 2.0.6) The permission to be set for newly created debugger data files. This value will be used by PHP \yii\debug\chmod() function. No umask will be applied. If not set, the permission will be determined by the current environment. public integer $fileMode = null

debug\Panel save()

save() public method Saves data to be later used in debugger detail view. This method is called on every page where debugger is enabled. public mixed save ( )return mixed Data to be saved

validators\Validator $attributes

$attributes public property Attributes to be validated by this validator. For multiple attributes, please specify them as an array; for single attribute, you may use either a string or an array. public array|string $attributes = []

mongodb\debug\MongoDbPanel $name

$name public read-only property Name of the panel public string getName ( )

sphinx\ActiveRecord populateRecord()

populateRecord() public static method Populates an active record object using a row of data from the database/storage. This is an internal method meant to be called to create active record objects after fetching data from the database. It is mainly used by yii\sphinx\ActiveQuery to populate the query results into active records. When calling this method manually you should call afterFind() on the created record to trigger the afterFind Event. public static void populateRecord ( $record, $

log\Logger $messages

$messages public property Logged messages. This property is managed by log() and flush(). Each log message is of the following structure: [ [0] => message (mixed, can be a string or some complex data, such as an exception object) [1] => level (integer) [2] => category (string) [3] => timestamp (float, obtained by microtime(true)) [4] => traces (array, debug backtrace, contains the application code call stacks) ] public array $messages = []