gii\console\GenerateController getActionHelp()

getActionHelp() public method Returns the detailed help information for the specified action. public string getActionHelp ( $action )$action yii\base\Action Action to get help for return string The detailed help information for the specified action.

i18n\Formatter asUrl()

asUrl() public method Formats the value as a hyperlink. public string asUrl ( $value, $options = [] )$value mixed The value to be formatted. $options array The tag options in terms of name-value pairs. See yii\helpers\Html::a(). return string The formatted result.

db\mysql\Schema $typeMap

$typeMap public property Mapping from physical column types (keys) to abstract column types (values) public array $typeMap = ['tinyint' => self::TYPE_SMALLINT, 'bit' => self::TYPE_INTEGER, 'smallint' => self::TYPE_SMALLINT, 'mediumint' => self::TYPE_INTEGER, 'int' => self::TYPE_INTEGER, 'integer' => self::TYPE_INTEGER, 'bigint' => self::TYPE_BIGINT, 'float' => self::TYPE_FLOAT, 'double' => self::TYPE_DOUBLE, 'real' => self::TYPE_FLOAT, 'decimal' => self::TY

behaviors\AttributeTypecastBehavior $typecastAfterValidate

$typecastAfterValidate public property Whether to perform typecasting after owner model validation. Note that typecasting will be performed only if validation was successful, e.g. owner model has no errors. Note that changing this option value will have no effect after this behavior has been attached to the model. public boolean $typecastAfterValidate = true

mutex\PgsqlMutex init()

init() public method Initializes PgSQL specific mutex component implementation. public void init ( )throws yii\base\InvalidConfigException if $db is not PgSQL connection.

db\QueryBuilder buildColumns()

buildColumns() public method Processes columns and properly quotes them if necessary. It will join all columns into a string with comma as separators. public string buildColumns ( $columns )$columns string|array The columns to be processed return string The processing result

db\Query addGroupBy()

addGroupBy() public method Adds additional group-by columns to the existing ones. See also groupBy(). public $this addGroupBy ( $columns )$columns string|array Additional columns to be grouped by. Columns can be specified in either a string (e.g. "id, name") or an array (e.g. ['id', 'name']). The method will automatically quote the column names unless a column contains some parenthesis (which means the column contains a DB expression). Note that if your group-by is an expression contai

db\Query column()

column() public method Executes the query and returns the first column of the result. public array column ( $db = null )$db yii\db\Connection The database connection used to generate the SQL statement. If this parameter is not given, the db application component will be used. return array The first column of the query result. An empty array is returned if the query results in nothing.

validators\IpValidator $normalize

$normalize public property Whether to add the CIDR prefix with the smallest length (32 for IPv4 and 128 for IPv6) to an address without it. Works only when subnet is not false. For example: 10.0.1.5 will normalized to 10.0.1.5/32 2008:db0::1 will be normalized to 2008:db0::1/128 Defaults to false. See also $subnet. public boolean $normalize = false

gii\generators\controller\Generator $actions

$actions public property List of action IDs separated by commas or spaces public string $actions = 'index'