widgets\DetailView $attributes

$attributes public property A list of attributes to be displayed in the detail view. Each array element represents the specification for displaying one particular attribute. An attribute can be specified as a string in the format of attribute, attribute:format or attribute:format:label, where attribute refers to the attribute name, and format represents the format of the attribute. The format is passed to the yii\i18n\Formatter::format() method to format an attribute value into a displayabl

validators\IpValidator $message

$message public property User-defined error message is used when validation fails due to the wrong IP address format. You may use the following placeholders in the message: {attribute}: the label of the attribute being validated {value}: the value of the attribute being validated public string $message = null

db\mysql\ColumnSchemaBuilder buildAfterString()

buildAfterString() protected method Builds the after constraint for the column. Defaults to unsupported. protected string buildAfterString ( )return string A string containing the AFTER constraint.

console\controllers\AssetController saveTargets()

saveTargets() protected method Saves new asset bundles configuration. protected void saveTargets ( $targets, $bundleFile )$targets yii\web\AssetBundle[] List of asset bundles to be saved. $bundleFile string Output file name. throws yii\console\Exception on failure.

widgets\ActiveForm $fieldClass

$fieldClass public property The default field class name when calling field() to create a new field. See also $fieldConfig. public string $fieldClass = 'yii\widgets\ActiveField'

authclient\widgets\GooglePlusButton renderButton()

renderButton() protected method Renders sign-in button. protected string renderButton ( )return string Button HTML.

base\ErrorException __construct()

__construct() public method Constructs the exception. public void __construct ( $message = '', $code = 0, $severity = 1, $filename = __FILE__, $lineno = __LINE__, Exception $previous = null )$message [optional] $code [optional] $severity [optional] $filename [optional] $lineno [optional] $previous [optional]

db\mssql\QueryBuilder addCommentOnTable()

addCommentOnTable() public method (available since version 2.0.8) Builds a SQL command for adding comment to table public string addCommentOnTable ( $table, $comment )$table string The table whose column is to be commented. The table name will be properly quoted by the method. $comment string The text of the comment to be added. The comment will be properly quoted by the method. return string The SQL statement for adding comment on table

rbac\ManagerInterface add()

add() public abstract method Adds a role, permission or rule to the RBAC system. public abstract boolean add ( $object )$object yii\rbac\Role|yii\rbac\Permission|yii\rbac\Rule return boolean Whether the role, permission or rule is successfully added to the system throws Exception if data validation or saving fails (such as the name of the role or permission is not unique)

BaseYii setAlias()

setAlias() public static method Registers a path alias. A path alias is a short name representing a long path (a file path, a URL, etc.) For example, we use '@yii' as the alias of the path to the Yii framework directory. A path alias must start with the character '@' so that it can be easily differentiated from non-alias paths. Note that this method does not check if the given path exists or not. All it does is to associate the alias with the path. Any trailing '/' and '\' characters in the