caching\Cache getValues()

getValues() protected method Retrieves multiple values from cache with the specified keys. The default implementation calls getValue() multiple times to retrieve the cached values one by one. If the underlying cache storage supports multiget, this method should be overridden to exploit that feature. protected array getValues ( $keys )$keys array A list of keys identifying the cached values return array A list of cached values indexed by the keys

caching\Cache delete()

delete() public method Deletes a value with the specified key from cache public boolean delete ( $key )$key mixed A key identifying the value to be deleted from cache. This can be a simple string or a complex data structure consisting of factors representing the key. return boolean If no error happens during deletion

caching\Cache $keyPrefix

$keyPrefix public property A string prefixed to every cache key so that it is unique globally in the whole cache storage. It is recommended that you set a unique cache key prefix for each application if the same cache storage is being used by different applications. To ensure interoperability, only alphanumeric characters should be used. public string $keyPrefix = null

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

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

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 ( )

sphinx\ColumnSchema $isField

$isField public property Whether this column is a indexed field public boolean $isField = null