db\QueryInterface andFilterWhere()

andFilterWhere() public abstract method Adds an additional WHERE condition to the existing one ignoring empty parameters. The new condition and the existing one will be joined using the 'AND' operator. See also: filterWhere() orFilterWhere() public abstract $this andFilterWhere ( array $condition )$condition array The new WHERE condition. Please refer to where() on how to specify this parameter. return $this The query object itself

db\pgsql\Schema getViewNames()

getViewNames() public method (available since version 2.0.9) Returns all view names in the database. public string[] getViewNames ( $schema = '', $refresh = false )$schema string The schema of the views. Defaults to empty string, meaning the current or default schema name. If not empty, the returned view names will be prefixed with the schema name. $refresh boolean Whether to fetch the latest available view names. If this is false, view names fetched previously (if available) will be r

data\Sort $attributeOrders

$attributeOrders public property Sort directions indexed by attribute names. Sort direction can be either SORT_ASC for ascending order or SORT_DESC for descending order. public array getAttributeOrders ( $recalculate = false )public void setAttributeOrders ( $attributeOrders, $validate = true )

web\GroupUrlRule init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )

helpers\Console

All Classes | Methods | Constants Inheritance yii\helpers\Console » yii\helpers\BaseConsole Available since version 2.0 Source Code https://github.com/yiisoft/yii2/blob/master/framework/helpers/Console.php Console helper provides useful methods for command line related tasks such as getting input or formatting and coloring output. Public Methods Method Description Defined By ansiFormat() Will return a string formatted with the given ANSI style yii\helpers\BaseConsole ansiFormatCode() Re

log\Target $levels

$levels public property The message levels that this target is interested in. This is a bitmap of level values. Defaults to 0, meaning all available levels. public integer getLevels ( )public void setLevels ( $levels )

authclient\BaseClient defaultNormalizeUserAttributeMap()

defaultNormalizeUserAttributeMap() protected method Returns the default $normalizeUserAttributeMap value. Particular client may override this method in order to provide specific default map. protected array defaultNormalizeUserAttributeMap ( )return array Normalize attribute map.

i18n\MessageFormatter format()

format() public method Formats a message via ICU message format It uses the PHP intl extension's MessageFormatter and works around some issues. If PHP intl is not installed a fallback will be used that supports a subset of the ICU message format. public string|boolean format ( $pattern, $params, $language )$pattern string The pattern string to insert parameters into. $params array The array of name value pairs to insert into the format string. $language string The locale to use for f

web\HeaderCollection $count

$count public read-only property The number of headers in the collection. public integer getCount ( )

filters\AccessRule $ips

$ips public property List of user IP addresses that this rule applies to. An IP address can contain the wildcard * at the end so that it matches IP addresses with the same prefix. For example, '192.168.*' matches all IP addresses in the segment '192.168.'. If not set or empty, it means this rule applies to all IP addresses. See also yii\web\Request::$userIP. public array $ips = null