web\IdentityInterface findIdentityByAccessToken()

findIdentityByAccessToken() public abstract static method Finds an identity by the given token. public abstract static yii\web\IdentityInterface findIdentityByAccessToken ( $token, $type = null )$token mixed The token to be looked for $type mixed The type of the token. The value of this parameter depends on the implementation. For example, yii\filters\auth\HttpBearerAuth will set this parameter to be yii\filters\auth\HttpBearerAuth. return yii\web\IdentityInterface The identity objec

caching\ApcCache getValue()

getValue() protected method Retrieves a value from cache with a specified key. This is the implementation of the method declared in the parent class. protected mixed|false getValue ( $key )$key string A unique key identifying the cached value return mixed|false The value stored in cache, false if the value is not in the cache or expired.

web\User getIdentityAndDurationFromCookie()

getIdentityAndDurationFromCookie() protected method (available since version 2.0.9) Determines if an identity cookie has a valid format and contains a valid auth key. This method is used when $enableAutoLogin is true. This method attempts to authenticate a user using the information in the identity cookie. See also loginByCookie(). protected array|null getIdentityAndDurationFromCookie ( )return array|null Returns an array of 'identity' and 'duration' if valid, otherwise null.

widgets\ListView renderItem()

renderItem() public method Renders a single data model. public string renderItem ( $model, $key, $index )$model mixed The data model to be rendered $key mixed The key value associated with the data model $index integer The zero-based index of the data model in the model array returned by $dataProvider. return string The rendering result

web\GroupUrlRule $ruleConfig

$ruleConfig public property The default configuration of URL rules. Individual rule configurations specified via $rules will take precedence when the same property of the rule is configured. public array $ruleConfig = ['class' => 'yii\web\UrlRule']

i18n\GettextMoFile readBytes()

readBytes() protected method Reads one or several bytes. protected string readBytes ( $fileHandle, $byteCount = 1 )$fileHandle resource To read from $byteCount integer To be read return string Bytes

db\QueryInterface limit()

limit() public abstract method Sets the LIMIT part of the query. public abstract $this limit ( $limit )$limit integer The limit. Use null or negative value to disable limit. return $this The query object itself

validators\ValidationAsset $depends

$depends public property public $depends = ['yii\web\YiiAsset']

bootstrap\ActiveForm $layout

$layout public property The form layout. Either 'default', 'horizontal' or 'inline'. By choosing a layout, an appropriate default field configuration is applied. This will render the form fields with slightly different markup for each layout. You can override these defaults through $fieldConfig. See also yii\bootstrap\ActiveField for details on Bootstrap 3 field configuration. public string $layout = 'default'

web\MultiFieldSession getUseCustomStorage()

getUseCustomStorage() public method Returns a value indicating whether to use custom session storage. This method overrides the parent implementation and always returns true. public boolean getUseCustomStorage ( )return boolean Whether to use custom storage.