authclient\signature\RsaSha1 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 ( )

helpers\BaseHtml activeHiddenInput()

activeHiddenInput() public static method Generates a hidden input tag for the given model attribute. This method will generate the "name" and "value" tag attributes automatically for the model attribute unless they are explicitly specified in $options. public static string activeHiddenInput ( $model, $attribute, $options = [] )$model yii\base\Model The model object $attribute string The attribute name or expression. See getAttributeName() for the format about attribute expression. $op

helpers\BaseHtml errorSummary()

errorSummary() public static method Generates a summary of the validation errors. If there is no validation error, an empty error summary markup will still be generated, but it will be hidden. public static string errorSummary ( $models, $options = [] )$models yii\base\Model|yii\base\Model[] The model(s) whose validation errors are to be displayed. $options array The tag options in terms of name-value pairs. The following options are specially handled: header: string, the header HTML

behaviors\TimestampBehavior $value

$value public property The value that will be assigned to the current attributes. This can be an anonymous function, callable in array format (e.g. [$this, 'methodName']), an \yii\behaviors\Expression object representing a DB expression (e.g. new Expression('NOW()')), scalar, string or an arbitrary value. If the former, the return value of the function will be assigned to the attributes. The signature of the function should be as follows, function ($event) { // return value will be assi

widgets\LinkSorter init()

init() public method Initializes the sorter. public void init ( )

helpers\FormatConverter

All Classes | Properties | Methods Inheritance yii\helpers\FormatConverter » yii\helpers\BaseFormatConverter Available since version 2.0 Source Code https://github.com/yiisoft/yii2/blob/master/framework/helpers/FormatConverter.php FormatConverter provides functionality to convert between different formatting pattern formats. It provides functions to convert date format patterns between different conventions. Public Properties Property Type Description Defined By $juiFallbackDatePatterns

validators\ValidationAsset $js

$js public property public $js = ['yii.validation.js']

base\Security encryptByPassword()

encryptByPassword() public method Encrypts data using a password. Derives keys for encryption and authentication from the password using PBKDF2 and a random salt, which is deliberately slow to protect against dictionary attacks. Use encryptByKey() to encrypt fast using a cryptographic key rather than a password. Key derivation time is determined by $derivationIterations, which should be set as high as possible. The encrypted data includes a keyed message authentication code (MAC) so there i

web\UrlNormalizer collapseSlashes()

collapseSlashes() protected method Collapse consecutive slashes in $pathInfo, for example converts site///index into site/index. protected string collapseSlashes ( $pathInfo )$pathInfo string Raw path info. return string Normalized path info.

base\Theme getBaseUrl()

getBaseUrl() public method public string getBaseUrl ( )return string The base URL (without ending slash) for this theme. All resources of this theme are considered to be under this base URL.