caching\MemCache $username

$username public property Memcached sasl username. This property is used only when $useMemcached is true. See also http://php.net/manual/en/memcached.setsaslauthdata.php. public string $username = null

widgets\BaseListView $layout

$layout public property The layout that determines how different sections of the list view should be organized. The following tokens will be replaced with the corresponding section contents: {summary}: the summary section. See renderSummary(). {items}: the list items. See renderItems(). {sorter}: the sorter. See renderSorter(). {pager}: the pager. See renderPager(). public string $layout = "{summary}\n{items}\n{pager}"

mongodb\file\ActiveRecord $fileResource

$fileResource public read-only property File stream resource. public resource getFileResource ( )

web\CacheSession readSession()

readSession() public method Session read handler. Do not call this method directly. public string readSession ( $id )$id string Session ID return string The session data

validators\IpValidator $networks

$networks public property The network aliases, that can be used in $ranges. key - alias name value - array of strings. String can be an IP range, IP address or another alias. String can be negated with NEGATION_CHAR (independent of negation option). The following aliases are defined by default: *: any any: 0.0.0.0/0, ::/0 private: 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16, fd00::/8 multicast: 224.0.0.0/4, ff00::/8 linklocal: 169.254.0.0/16, fe80::/10 localhost: 127.0.0.0/8', ::1

data\Pagination $totalCount

$totalCount public property Total number of items. public integer $totalCount = 0

widgets\Pjax requiresPjax()

requiresPjax() protected method protected boolean requiresPjax ( )return boolean Whether the current request requires pjax response from this widget

widgets\Breadcrumbs $activeItemTemplate

$activeItemTemplate public property The template used to render each active item in the breadcrumbs. The token {link} will be replaced with the actual HTML link for each active item. public string $activeItemTemplate = "<li class=\"active\">{link}</li>\n"

db\pgsql\Schema insert()

insert() public method Executes the INSERT command, returning primary key values. public array|false insert ( $table, $columns )$table string The table that new rows will be inserted into. $columns array The column data (name => value) to be inserted into the table. return array|false Primary key values or false if the command fails

validators\EachValidator validateAttribute()

validateAttribute() public method Validates a single attribute. Child classes must implement this method to provide the actual validation logic. public void validateAttribute ( $model, $attribute )$model yii\base\Model The data model to be validated $attribute string The name of the attribute to be validated.