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.

caching\Cache get()

get() public method Retrieves a value from cache with a specified key. public mixed get ( $key )$key mixed A key identifying the cached value. This can be a simple string or a complex data structure consisting of factors representing the key. return mixed The value stored in cache, false if the value is not in the cache, expired, or the dependency associated with the cached data has changed.

db\Query $from

$from public property The table(s) to be selected from. For example, ['user', 'post']. This is used to construct the FROM clause in a SQL statement. See also from(). public array $from = null

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