helpers\BaseHtml activeInput()

activeInput() public static method Generates an 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 activeInput ( $type, $model, $attribute, $options = [] )$type string The input type (e.g. 'text', 'password') $model yii\base\Model The model object $attribute string The attribute name or expression. See getAttributeName() fo

authclient\BaseClient setNormalizeUserAttributeMap()

setNormalizeUserAttributeMap() public method public void setNormalizeUserAttributeMap ( $normalizeUserAttributeMap )$normalizeUserAttributeMap array Normalize user attribute map.

authclient\signature\RsaSha1 getPublicCertificate()

getPublicCertificate() public method public string getPublicCertificate ( )return string Public key certificate content.

elasticsearch\DebugPanel save()

save() public method Saves data to be later used in debugger detail view. This method is called on every page where debugger is enabled. public mixed save ( )return mixed Data to be saved

authclient\BaseClient $normalizeUserAttributeMap

$normalizeUserAttributeMap public property Normalize user attribute map. public array getNormalizeUserAttributeMap ( )public void setNormalizeUserAttributeMap ( $normalizeUserAttributeMap )

db\BaseActiveRecord updateInternal()

updateInternal() protected method See also update(). protected integer|false updateInternal ( $attributes = null )$attributes array Attributes to update return integer|false The number of rows affected, or false if beforeSave() stops the updating process. throws yii\db\StaleObjectException

db\Connection quoteTableName()

quoteTableName() public method Quotes a table name for use in a query. If the table name contains schema prefix, the prefix will also be properly quoted. If the table name is already quoted or contains special characters including '(', '[[' and '{{', then this method will do nothing. public string quoteTableName ( $name )$name string Table name return string The properly quoted table name

rbac\BaseManager createPermission()

createPermission() public method Creates a new Permission object. Note that the newly created permission is not added to the RBAC system yet. You must fill in the needed data and call add() to add it to the system. public yii\rbac\Permission createPermission ( $name )$name string The permission name return yii\rbac\Permission The new Permission object

db\ColumnSchema typecast()

typecast() protected method (available since version 2.0.3) Converts the input value according to $phpType after retrieval from the database. If the value is null or an yii\db\Expression, it will not be converted. protected mixed typecast ( $value )$value mixed Input value return mixed Converted value

web\Session set()

set() public method Adds a session variable. If the specified name already exists, the old value will be overwritten. public void set ( $key, $value )$key string Session variable name $value mixed Session variable value