web\Cookie __toString()

__toString() public method Magic method to turn a cookie object into a string without having to explicitly access $value. if (isset($request->cookies['name'])) { $value = (string) $request->cookies['name']; } public string __toString ( )return string The value of the cookie. If the value property is null, an empty string will be returned.

db\ActiveRelationTrait populateRelation()

populateRelation() public method Finds the related records and populates them into the primary models. public array populateRelation ( $name, &$primaryModels )$name string The relation name $primaryModels array Primary models return array The related models throws yii\base\InvalidConfigException if $link is invalid

web\MultiFieldSession $writeCallback

$writeCallback public property A callback that will be called during session data writing. The signature of the callback should be as follows: function ($session) where $session is this session instance, this variable can be used to retrieve session data. Callback should return the actual fields set, which should be saved into the session storage. For example: function ($session) { return [ 'user_id' => Yii::$app->user->id, 'ip' => $_SERVER['REMOTE_ADDR'],

validators\BooleanValidator $falseValue

$falseValue public property The value representing false status. Defaults to '0'. public mixed $falseValue = '0'

elasticsearch\DebugAction run()

run() public method public void run ( $logId, $tag )$logId $tag

authclient\OAuth1 fetchAccessToken()

fetchAccessToken() public method Fetches OAuth access token. public yii\authclient\OAuthToken fetchAccessToken ( yii\authclient\OAuthToken $requestToken = null, $oauthVerifier = null, array $params = [] )$requestToken yii\authclient\OAuthToken OAuth request token. $oauthVerifier string OAuth verifier. $params array Additional request params. return yii\authclient\OAuthToken OAuth access token. throws yii\base\Exception on failure.

gii\components\ActiveField init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )

base\Module $controllerNamespace

$controllerNamespace public property The namespace that controller classes are in. This namespace will be used to load controller classes by prepending it to the controller class name. If not set, it will use the controllers sub-namespace under the namespace of this module. For example, if the namespace of this module is foo\bar, then the default controller namespace would be foo\bar\controllers. See also the guide section on autoloading to learn more about defining namespaces and how class

rbac\ManagerInterface removeAllRules()

removeAllRules() public abstract method Removes all rules. All roles and permissions which have rules will be adjusted accordingly. public abstract void removeAllRules ( )

authclient\AuthAction redirect()

redirect() public method Redirect to the given URL or simply close the popup window. public yii\web\Response redirect ( $url, $enforceRedirect = true )$url mixed URL to redirect, could be a string or array config to generate a valid URL. $enforceRedirect boolean Indicates if redirect should be performed even in case of popup window. return yii\web\Response Response instance.