authclient\BaseOAuth defaultReturnUrl()

defaultReturnUrl() protected method Composes default $returnUrl value. protected string defaultReturnUrl ( )return string Return URL.

caching\DbCache gc()

gc() public method Removes the expired data values. public void gc ( $force = false )$force boolean Whether to enforce the garbage collection regardless of $gcProbability. Defaults to false, meaning the actual deletion happens with the probability as specified by $gcProbability.

log\Dispatcher $targets

$targets public property The log targets. Each array element represents a single log target instance or the configuration for creating the log target instance. public array|yii\log\Target[] $targets = []

gii\console\GenerateController getActionHelp()

getActionHelp() public method Returns the detailed help information for the specified action. public string getActionHelp ( $action )$action yii\base\Action Action to get help for return string The detailed help information for the specified action.

db\Connection $schemaCacheExclude

$schemaCacheExclude public property List of tables whose metadata should NOT be cached. Defaults to empty array. The table names may contain schema prefix, if any. Do not quote the table names. See also $enableSchemaCache. public array $schemaCacheExclude = []

gii\generators\extension\Generator requiredTemplates()

requiredTemplates() public method Returns a list of code template files that are required. Derived classes usually should override this method if they require the existence of certain template files. public array requiredTemplates ( )return array List of code template files that are required. They should be file paths relative to $templatePath.

base\Component detachBehavior()

detachBehavior() public method Detaches a behavior from the component. The behavior's yii\base\Behavior::detach() method will be invoked. public null|yii\base\Behavior detachBehavior ( $name )$name string The behavior's name. return null|yii\base\Behavior The detached behavior. Null if the behavior does not exist.

widgets\DetailView $model

$model public property The data model whose details are to be displayed. This can be a yii\base\Model instance, an associative array, an object that implements yii\base\Arrayable interface or simply an object with defined public accessible non-static properties. public array|object $model = null

sphinx\QueryBuilder insert()

insert() public method Creates an INSERT SQL statement. For example, $sql = $queryBuilder->insert('idx_user', [ 'name' => 'Sam', 'age' => 30, 'id' => 10, ], $params); The method will properly escape the index and column names. public string insert ( $index, $columns, &$params )$index string The index that new rows will be inserted into. $columns array The column data (name => value) to be inserted into the index. $params array The binding parameters th

filters\auth\AuthMethod handleFailure()

handleFailure() public method Handles authentication failure. The implementation should normally throw UnauthorizedHttpException to indicate authentication failure. public void handleFailure ( $response )$response yii\web\Response throws yii\web\UnauthorizedHttpException