debug\panels\DbPanel $profileLogs

$profileLogs public read-only property public array getProfileLogs ( )

debug\panels\ConfigPanel $detail

$detail public read-only property Content that is displayed in debugger detail view public string getDetail ( )

debug\panels\RequestPanel save()

save() public method Saves data to be later used in debugger detail view. This method is called on every page where debugger is enabled. public mixed save ( )return mixed Data to be saved

data\Sort setAttributeOrders()

setAttributeOrders() public method (available since version 2.0.10) Sets up the currently sort information. public void setAttributeOrders ( $attributeOrders, $validate = true )$attributeOrders array|null Sort directions indexed by attribute names. Sort direction can be either SORT_ASC for ascending order or SORT_DESC for descending order. $validate boolean Whether to validate given attribute orders against $attributes and $enableMultiSort. If validation is enabled incorrect entries

db\Connection transaction()

transaction() public method Executes callback provided in a transaction. public mixed transaction ( callable $callback, $isolationLevel = null )$callback callable A valid PHP callback that performs the job. Accepts connection instance as parameter. $isolationLevel string|null The isolation level to use for this transaction. See yii\db\Transaction::begin() for details. return mixed Result of callback function throws Exception

elasticsearch\Query $aggregations

$aggregations public property List of aggregations to add to this query. See also http://www.elastic.co/guide/en/elasticsearch/reference/1.x/search-aggregations.html. public array $aggregations = []

debug\panels\AssetPanel getDetail()

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

rbac\Item $updatedAt

$updatedAt public property UNIX timestamp representing the item updating time public integer $updatedAt = null

db\BaseActiveRecord updateCounters()

updateCounters() public method Updates one or several counter columns for the current AR object. Note that this method differs from updateAllCounters() in that it only saves counters for the current AR object. An example usage is as follows: $post = Post::findOne($id); $post->updateCounters(['view_count' => 1]); See also updateAllCounters(). public boolean updateCounters ( $counters )$counters array The counters to be updated (attribute name => increment value) Use negative val

rbac\PhpManager detectLoop()

detectLoop() protected method Checks whether there is a loop in the authorization item hierarchy. protected boolean detectLoop ( $parent, $child )$parent yii\rbac\Item Parent item $child yii\rbac\Item The child item that is to be added to the hierarchy return boolean Whether a loop exists