base\Behavior detach()

detach() public method Detaches the behavior object from the component. The default implementation will unset the $owner property and detach event handlers declared in events(). Make sure you call the parent implementation if you override this method. public void detach ( )

redis\ActiveRecord getDb()

getDb() public static method Returns the database connection used by this AR class. By default, the "redis" application component is used as the database connection. You may override this method if you want to use a different database connection. public static yii\redis\Connection getDb ( )return yii\redis\Connection The database connection used by this AR class.

base\ErrorHandler handleFallbackExceptionMessage()

handleFallbackExceptionMessage() protected method (available since version 2.0.11) Handles exception thrown during exception processing in handleException(). protected void handleFallbackExceptionMessage ( $exception, $previousException )$exception Exception|\Throwable Exception that was thrown during main exception processing. $previousException Exception Main exception processed in handleException().

base\Security $passwordHashStrategy

$passwordHashStrategy public property Strategy, which should be used to generate password hash. Available strategies: 'password_hash' - use of PHP password_hash() function with PASSWORD_DEFAULT algorithm. This option is recommended, but it requires PHP version >= 5.5.0 'crypt' - use PHP crypt() function. public string $passwordHashStrategy = null

base\Security generatePasswordHash()

generatePasswordHash() public method Generates a secure hash from a password and a random salt. The generated hash can be stored in database. Later when a password needs to be validated, the hash can be fetched and passed to validatePassword(). For example, // generates the hash (usually done during user registration or when the password is changed) $hash = Yii::$app->getSecurity()->generatePasswordHash($password); // ...save $hash in database... // during login, validate if the pass

bootstrap\Nav $dropDownCaret

$dropDownCaret public property This property allows you to customize the HTML which is used to generate the drop down caret symbol, which is displayed next to the button text to indicate the drop down functionality. Defaults to null which means <span class="caret"></span> will be used. To disable the caret, set this property to be an empty string. public string $dropDownCaret = null

web\GroupUrlRule $prefix

$prefix public property The prefix for the pattern part of every rule declared in $rules. The prefix and the pattern will be separated with a slash. public string $prefix = null

web\UrlRule $route

$route public property The route to the controller action public string $route = null

authclient\Collection getClients()

getClients() public method public yii\authclient\ClientInterface[] getClients ( )return yii\authclient\ClientInterface[] List of auth clients.

debug\panels\ConfigPanel getPhpInfo()

getPhpInfo() public method Returns the BODY contents of the phpinfo() output public array getPhpInfo ( )