web\CacheSession destroySession()

destroySession() public method Session destroy handler. Do not call this method directly. public boolean destroySession ( $id )$id string Session ID return boolean Whether session is destroyed successfully

grid\CheckboxColumn $checkboxOptions

$checkboxOptions public property The HTML attributes for checkboxes. This can either be an array of attributes or an anonymous function (Closure) that returns such an array. The signature of the function should be the following: function ($model, $key, $index, $column). Where $model, $key, and $index refer to the model, key and index of the row currently being rendered and $column is a reference to the yii\grid\CheckboxColumn object. A function may be used to assign different attributes to

log\Dispatcher getTraceLevel()

getTraceLevel() public method public integer getTraceLevel ( )return integer How many application call stacks should be logged together with each message. This method returns the value of yii\log\Logger::$traceLevel. Defaults to 0.

widgets\LinkPager renderPageButton()

renderPageButton() protected method Renders a page button. You may override this method to customize the generation of page buttons. protected string renderPageButton ( $label, $page, $class, $disabled, $active )$label string The text label for the button $page integer The page number $class string The CSS class for the page button. $disabled boolean Whether this page button is disabled $active boolean Whether this page button is active return string The rendering result

mongodb\ActiveFixture getCollectionName()

getCollectionName() protected method Returns collection name used by this fixture. protected array|string getCollectionName ( )return array|string Related collection name

debug\panels\DbPanel getProfileLogs()

getProfileLogs() public method Returns all profile logs of the current request for this panel. It includes categories such as: 'yii\db\Command::query', 'yii\db\Command::execute'. public array getProfileLogs ( )

redis\Connection __call()

__call() public method Allows issuing all supported commands via magic methods. $redis->hmset(['test_collection', 'key1', 'val1', 'key2', 'val2']) public mixed __call ( $name, $params )$name string Name of the missing method to execute $params array Method call arguments

elasticsearch\Query $timeout

$timeout public property 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. See also: timeout() http://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#_parameters_5 public integer $timeout = null

widgets\Pjax $timeout

$timeout public property Pjax timeout setting (in milliseconds). This timeout is used when making AJAX requests. Use a bigger number if your server is slow. If the server does not respond within the timeout, a full page load will be triggered. public integer $timeout = 1000

base\BootstrapInterface bootstrap()

bootstrap() public abstract method Bootstrap method to be called during application bootstrap stage. public abstract void bootstrap ( $app )$app yii\base\Application The application currently running