rbac\Item $type

$type public property The type of the item. This should be either TYPE_ROLE or TYPE_PERMISSION. public integer $type = null

widgets\FragmentCache $cachedContent

$cachedContent public read-only property The cached content. False is returned if valid content is not found in the cache. public string|false getCachedContent ( )

base\Model loadMultiple()

loadMultiple() public static method Populates a set of models with the data from end user. This method is mainly used to collect tabular data input. The data to be loaded for each model is $data[formName][index], where formName refers to the value of formName(), and index the index of the model in the $models array. If formName() is empty, $data[index] will be used to populate each model. The data being populated to each model is subject to the safety check by setAttributes(). public stat

data\Sort link()

link() public method Generates a hyperlink that links to the sort action to sort by the specified attribute. Based on the sort direction, the CSS class of the generated hyperlink will be appended with "asc" or "desc". public string link ( $attribute, $options = [] )$attribute string The attribute name by which the data should be sorted by. $options array Additional HTML attributes for the hyperlink tag. There is one special attribute label which will be used as the label of the hyperli

gii\generators\model\Generator $generateRelationsFromCurrentSchema

$generateRelationsFromCurrentSchema public property public $generateRelationsFromCurrentSchema = true

validators\IpValidator validateIPv4()

validateIPv4() protected method Validates IPv4 address protected boolean validateIPv4 ( $value )$value string

base\Model offsetUnset()

offsetUnset() public method Sets the element value at the specified offset to null. This method is required by the SPL interface ArrayAccess. It is implicitly called when you use something like unset($model[$offset]). public void offsetUnset ( $offset )$offset mixed The offset to unset element

base\Controller renderFile()

renderFile() public method Renders a view file. public string renderFile ( $file, $params = [] )$file string The view file to be rendered. This can be either a file path or a path alias. $params array The parameters (name-value pairs) that should be made available in the view. return string The rendering result. throws yii\base\InvalidParamException if the view file does not exist.

helpers\UnsetArrayValue

All Classes Inheritance yii\helpers\UnsetArrayValue Available since version 2.0.10 Source Code https://github.com/yiisoft/yii2/blob/master/framework/helpers/UnsetArrayValue.php Object that represents the removal of array value while performing yii\helpers\ArrayHelper::merge(). Usage example: $array1 = [ 'ids' => [ 1, ], 'validDomains' => [ 'example.com', 'www.example.com', ], ]; $array2 = [ 'ids' => [ 2, ], 'validDomains

web\CookieCollection get()

get() public method Returns the cookie with the specified name. See also getValue(). public yii\web\Cookie get ( $name )$name string The cookie name return yii\web\Cookie The cookie with the specified name. Null if the named cookie does not exist.