debug\panels\LogPanel getDetail()

getDetail() public method public string getDetail ( )return string Content that is displayed in debugger detail view

elasticsearch\Query timeout()

timeout() public method Sets the search timeout. See also http://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#_parameters_5. public $this timeout ( $timeout )$timeout integer A search timeout, bounding the search request to be executed within the specified time value and bail with the hits accumulated up to that point when expired. Defaults to no timeout. return $this The query object itself

helpers\BaseConsole endAnsiFormat()

endAnsiFormat() public static method Resets any ANSI format set by previous method beginAnsiFormat() Any output after this will have default text format. This is equal to calling echo Console::ansiFormatCode([Console::RESET]) public static void endAnsiFormat ( )

sphinx\Command bindValue()

bindValue() public method Binds a value to a parameter. public $this bindValue ( $name, $value, $dataType = null )$name string|integer Parameter identifier. For a prepared statement using named placeholders, this will be a parameter name of the form :name. For a prepared statement using question mark placeholders, this will be the 1-indexed position of the parameter. $value mixed The value to bind to the parameter $dataType integer SQL data type of the parameter. If null, the type

widgets\ActiveField $hintOptions

$hintOptions public property The default options for the hint tags. The parameter passed to hint() will be merged with this property when rendering the hint tag. The following special options are recognized: tag: the tag name of the container element. Defaults to div. Setting it to false will not render a container tag. See also yii\helpers\Html::tag(). See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $hintOptions = ['class' =

db\ActiveRelationTrait $link

$link public property The columns of the primary and foreign tables that establish a relation. The array keys must be columns of the table for this relation, and the array values must be the corresponding columns from the primary table. Do not prefix or quote the column names as this will be done automatically by Yii. This property is only used in relational context. public array $link = null

mongodb\validators\MongoDateValidator 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.

widgets\DetailView $attributes

$attributes public property A list of attributes to be displayed in the detail view. Each array element represents the specification for displaying one particular attribute. An attribute can be specified as a string in the format of attribute, attribute:format or attribute:format:label, where attribute refers to the attribute name, and format represents the format of the attribute. The format is passed to the yii\i18n\Formatter::format() method to format an attribute value into a displayabl

filters\Cors extractHeaders()

extractHeaders() public method Extract CORS headers from the request public array extractHeaders ( )return array CORS headers to handle

rbac\BaseManager updateRule()

updateRule() protected abstract method Updates a rule to the RBAC system. protected abstract boolean updateRule ( $name, $rule )$name string The name of the rule being updated $rule yii\rbac\Rule The updated rule return boolean Whether the rule is successfully updated throws Exception if data validation or saving fails (such as the name of the rule is not unique)