behaviors\AttributeTypecastBehavior clearAutoDetectedAttributeTypes()

clearAutoDetectedAttributeTypes() public static method Clears internal static cache of auto detected $attributeTypes values over all affected owner classes. public static void clearAutoDetectedAttributeTypes ( )

validators\IpValidator $subnet

$subnet public property Whether the address can be an IP with CIDR subnet, like 192.168.10.0/24. The following values are possible: false - the address must not have a subnet (default). true - specifying a subnet is required. null - specifying a subnet is optional. public boolean $subnet = false

sphinx\ActiveDataProvider setMeta()

setMeta() public method public void setMeta ( $meta )$meta array Search query meta info

validators\NumberValidator $numberPattern

$numberPattern public property The regular expression for matching numbers. It defaults to a pattern that matches floating numbers with optional exponential part (e.g. -1.23e-10). public string $numberPattern = '/^\s*[-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?\s*$/'

sphinx\ActiveFixture init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )

sphinx\ActiveDataProvider getMeta()

getMeta() public method public array getMeta ( )return array Search query meta info

Entry Scripts

Web Applications Console Applications Defining Constants Entry scripts are the first step in the application bootstrapping process. An application (either Web application or console application) has a single entry script. End users make requests to entry scripts which instantiate application instances and forward the requests to them. Entry scripts for Web applications must be stored under Web accessible directories so that they can be accessed by end users. They are often named as index.php,

mongodb\Migration insert()

insert() public method Inserts new data into collection. public \MongoDB\BSON\ObjectID insert ( $collection, $data, $options = [] )$collection array|string Collection name. $data array|object Data to be inserted. $options array List of options in format: optionName => optionValue. return \MongoDB\BSON\ObjectID New record id instance.

rbac\ManagerInterface getAssignment()

getAssignment() public abstract method Returns the assignment information regarding a role and a user. public abstract null|yii\rbac\Assignment getAssignment ( $roleName, $userId )$roleName string The role name $userId string|integer The user ID (see yii\web\User::$id) return null|yii\rbac\Assignment The assignment information. Null is returned if the role is not assigned to the user.

base\View findViewFile()

findViewFile() protected method Finds the view file based on the given view name. protected string findViewFile ( $view, $context = null )$view string The view name or the path alias of the view file. Please refer to render() on how to specify this parameter. $context object The context to be assigned to the view and can later be accessed via $context in the view. If the context implements yii\base\ViewContextInterface, it may also be used to locate the view file corresponding to a rel