widgets\Breadcrumbs $options

$options public property The HTML attributes for the breadcrumb container tag. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $options = ['class' => 'breadcrumb']

authclient\OpenId fetchAttributes()

fetchAttributes() public method Gets AX/SREG attributes provided by OP. Should be used only after successful validation. Note that it does not guarantee that any of the required/optional parameters will be present, or that there will be no other attributes besides those specified. In other words. OP may provide whatever information it wants to. SREG names will be mapped to AX names. See also http://www.axschema.org/types/. public array fetchAttributes ( )return array Array of attributes

rest\Serializer serializeModel()

serializeModel() protected method Serializes a model object. protected array serializeModel ( $model )$model yii\base\Arrayable return array The array representation of the model

widgets\ActiveField textInput()

textInput() public method Renders a text input. This method will generate the name and value tag attributes automatically for the model attribute unless they are explicitly specified in $options. public $this textInput ( $options = [] )$options array The tag options in terms of name-value pairs. These will be rendered as the attributes of the resulting tag. The values will be HTML-encoded using yii\helpers\Html::encode(). The following special options are recognized: maxlength: integer|

mongodb\Migration update()

update() public method Updates the rows, which matches given criteria by given data. Note: for "multiple" mode Mongo requires explicit strategy "$set" or "$inc" to be specified for the "newData". If no strategy is passed "$set" will be used. public integer|boolean update ( $collection, $condition, $newData, $options = [] )$collection array|string Collection name. $condition array Description of the objects to update. $newData array The object with which to update the matching recor

authclient\BaseClient defaultNormalizeUserAttributeMap()

defaultNormalizeUserAttributeMap() protected method Returns the default $normalizeUserAttributeMap value. Particular client may override this method in order to provide specific default map. protected array defaultNormalizeUserAttributeMap ( )return array Normalize attribute map.

helpers\BaseHtml radioList()

radioList() public static method Generates a list of radio buttons. A radio button list is like a checkbox list, except that it only allows single selection. public static string radioList ( $name, $selection = null, $items = [], $options = [] )$name string The name attribute of each radio button. $selection string|array|null The selected value(s). String for single or array for multiple selection(s). $items array The data item used to generate the radio buttons. The array keys are

db\SchemaBuilderTrait boolean()

boolean() public method (available since version 2.0.6) Creates a boolean column. public yii\db\ColumnSchemaBuilder boolean ( )return yii\db\ColumnSchemaBuilder The column instance which can be further customized.

rbac\ManagerInterface update()

update() public abstract method Updates the specified role, permission or rule in the system. public abstract boolean update ( $name, $object )$name string The old name of the role, permission or rule $object yii\rbac\Role|yii\rbac\Permission|yii\rbac\Rule return boolean Whether the update is successful throws Exception if data validation or saving fails (such as the name of the role or permission is not unique)

authclient\OAuth2 refreshAccessToken()

refreshAccessToken() public method Gets new auth token to replace expired one. public yii\authclient\OAuthToken refreshAccessToken ( yii\authclient\OAuthToken $token )$token yii\authclient\OAuthToken Expired auth token. return yii\authclient\OAuthToken New auth token.