helpers\BaseFormatConverter convertDatePhpToIcu()

convertDatePhpToIcu() public static method Converts a date format pattern from [php date() function format][] to [ICU format][]. The conversion is limited to date patterns that do not use escaped characters. Patterns like jS \o\f F Y which will result in a date like 1st of December 2014 may not be converted correctly because of the use of escaped characters. Pattern constructs that are not supported by the ICU format will be removed. public static string convertDatePhpToIcu ( $pattern )$p

authclient\OpenId $capath

$capath public property Directory that holds multiple CA certificates. This value will take effect only if $verifyPeer is set. public string $capath = null

widgets\BaseListView $sorter

$sorter public property The configuration for the sorter widget. By default, yii\widgets\LinkSorter will be used to render the sorter. You can use a different widget class by configuring the "class" element. Note that the widget must support the sort property which will be populated with the sort value of the $dataProvider. public array $sorter = []

behaviors\AttributeTypecastBehavior $skipOnNull

$skipOnNull public property Whether to skip typecasting of null values. If enabled attribute value which equals to null will not be type-casted (e.g. null remains null), otherwise it will be converted according to the type configured at $attributeTypes. public boolean $skipOnNull = true

db\Query params()

params() public method Sets the parameters to be bound to the query. See also addParams(). public $this params ( $params )$params array List of query parameter values indexed by parameter placeholders. For example, [':name' => 'Dan', ':age' => 31]. return $this The query object itself

widgets\Block $renderInPlace

$renderInPlace public property Whether to render the block content in place. Defaults to false, meaning the captured block content will not be displayed. public boolean $renderInPlace = false

mongodb\rbac\MongoDbManager getRolesByUser()

getRolesByUser() public method Returns the roles that are assigned to the user via assign(). Note that child roles that are not assigned directly to the user will not be returned. public yii\rbac\Role[] getRolesByUser ( $userId )$userId string|integer The user ID (see yii\web\User::$id) return yii\rbac\Role[] All roles directly assigned to the user. The array is indexed by the role names.

BaseYii endProfile()

endProfile() public static method Marks the end of a code block for profiling. This has to be matched with a previous call to beginProfile() with the same category name. See also beginProfile(). public static void endProfile ( $token, $category = 'application' )$token string Token for the code block $category string The category of this log message

filters\AccessControl $rules

$rules public property A list of access rule objects or configuration arrays for creating the rule objects. If a rule is specified via a configuration array, it will be merged with $ruleConfig first before it is used for creating the rule object. See also $ruleConfig. public array $rules = []

db\BaseActiveRecord save()

save() public method Saves the current record. This method will call insert() when $isNewRecord is true, or update() when $isNewRecord is false. For example, to save a customer record: $customer = new Customer; // or $customer = Customer::findOne($id); $customer->name = $name; $customer->email = $email; $customer->save(); public boolean save ( $runValidation = true, $attributeNames = null )$runValidation boolean Whether to perform validation (calling validate()) before saving t