gii\console\GenerateController getUniqueID()

getUniqueID() public method public void getUniqueID ( )

elasticsearch\Command $index

$index public property The indexes to execute the query on. Defaults to null meaning all indexes See also http://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html#search-multi-index-type. public string|array $index = null

mail\MessageInterface getFrom()

getFrom() public abstract method Returns the message sender. public abstract string getFrom ( )return string The sender

mutex\PgsqlMutex releaseLock()

releaseLock() protected method Releases lock by given name. See also http://www.postgresql.org/docs/9.0/static/functions-admin.html. protected boolean releaseLock ( $name )$name string Of the lock to be released. return boolean Release result.

sphinx\QueryBuilder buildMatch()

buildMatch() public method public string buildMatch ( $match, &$params )$match string|yii\db\Expression|yii\sphinx\MatchExpression Match condition $params array The binding parameters to be populated return string Generated MATCH expression

grid\DataColumn $filterInputOptions

$filterInputOptions public property The HTML attributes for the filter input fields. This property is used in combination with the $filter property. When $filter is not set or is an array, this property will be used to render the HTML attributes for the generated filter input fields. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $filterInputOptions = ['class' => 'form-control', 'id' => null]

web\AssetConverter convert()

convert() public method Converts a given asset file into a CSS or JS file. public string convert ( $asset, $basePath )$asset string The asset file path, relative to $basePath $basePath string The directory the $asset is relative to. return string The converted asset file path, relative to $basePath.

console\Markdown renderEmph()

renderEmph() protected method Renders empathized elements. protected string renderEmph ( $element )$element array

widgets\ActiveField dropDownList()

dropDownList() public method Renders a drop-down list. The selection of the drop-down list is taken from the value of the model attribute. public $this dropDownList ( $items, $options = [] )$items array The option data items. The array keys are option values, and the array values are the corresponding option labels. The array can also be nested (i.e. some array values are arrays too). For each sub-array, an option group will be generated whose label is the key associated with the sub-arr

di\Container invoke()

invoke() public method (available since version 2.0.7) Invoke a callback with resolving dependencies in parameters. This methods allows invoking a callback and let type hinted parameter names to be resolved as objects of the Container. It additionally allow calling function using named parameters. For example, the following callback may be invoked using the Container to resolve the formatter dependency: $formatString = function($string, \yii\i18n\Formatter $formatter) { // ... } Yii::$co