helpers\BaseHtml checkboxList()

checkboxList() public static method Generates a list of checkboxes. A checkbox list allows multiple selection, like listBox(). As a result, the corresponding submitted value is an array. public static string checkboxList ( $name, $selection = null, $items = [], $options = [] )$name string The name attribute of each checkbox. $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 check

web\HeaderCollection offsetSet()

offsetSet() public method Adds the header to the collection. This method is required by the SPL interface ArrayAccess. It is implicitly called when you use something like $collection[$name] = $header;. This is equivalent to add(). public void offsetSet ( $name, $value )$name string The header name $value string The header value to be added

authclient\AuthAction $cancelUrl

$cancelUrl public property Cancel URL. public string getCancelUrl ( )public void setCancelUrl ( $url )

db\BaseActiveRecord getAttributeLabel()

getAttributeLabel() public method Returns the text label for the specified attribute. If the attribute looks like relatedModel.attribute, then the attribute will be received from the related model. See also: generateAttributeLabel() attributeLabels() public string getAttributeLabel ( $attribute )$attribute string The attribute name return string The attribute label

rest\Serializer serializeModels()

serializeModels() protected method Serializes a set of models. protected array serializeModels ( array $models )$models array return array The array representation of the models

web\Request get()

get() public method Returns GET parameter with a given name. If name isn't specified, returns an array of all GET parameters. public array|mixed get ( $name = null, $defaultValue = null )$name string The parameter name $defaultValue mixed The default parameter value if the parameter does not exist.

db\oci\QueryBuilder dropCommentFromColumn()

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

db\Migration getDb()

getDb() protected method (available since version 2.0.6) protected void getDb ( )

bootstrap\Nav $route

$route public property The route used to determine if a menu item is active or not. If not set, it will use the route of the current request. See also: $params isItemActive() public string $route = null

db\BaseActiveRecord __get()

__get() public method PHP getter magic method. This method is overridden so that attributes and related objects can be accessed like properties. See also getAttribute(). public mixed __get ( $name )$name string Property name return mixed Property value throws yii\base\InvalidParamException if relation name is wrong