widgets\ActiveField radio()

radio() public method Renders a radio button. This method will generate the checked tag attribute according to the model attribute value. public $this radio ( $options = [], $enclosedByLabel = true )$options array The tag options in terms of name-value pairs. The following options are specially handled: uncheck: string, the value associated with the uncheck state of the radio button. If not set, it will take the default value 0. This method will render a hidden input so that if the radi

rbac\DbManager removeChild()

removeChild() public method Removes a child from its parent. Note, the child item is not deleted. Only the parent-child relationship is removed. public boolean removeChild ( $parent, $child )$parent yii\rbac\Item $child yii\rbac\Item return boolean Whether the removal is successful

helpers\BaseInflector camelize()

camelize() public static method Returns given word as CamelCased Converts a word like "send_email" to "SendEmail". It will remove non alphanumeric character from the word, so "who's online" will be converted to "WhoSOnline" See also variablize(). public static string camelize ( $word )$word string The word to CamelCase

debug\panels\ConfigPanel $summary

$summary public read-only property Content that is displayed at debug toolbar public string getSummary ( )

db\ActiveRelationTrait __clone()

__clone() public method Clones internal objects. public void __clone ( )

i18n\Formatter asRaw()

asRaw() public method Formats the value as is without any formatting. This method simply returns back the parameter without any format. The only exception is a null value which will be formatted using $nullDisplay. public string asRaw ( $value )$value mixed The value to be formatted. return string The formatted result.

behaviors\AttributeTypecastBehavior afterValidate()

afterValidate() public method Handles owner 'afterValidate' event, ensuring attribute typecasting. public void afterValidate ( $event )$event yii\base\Event Event instance.

sphinx\Schema quoteIndexName()

quoteIndexName() public method Quotes a index name for use in a query. If the index name contains schema prefix, the prefix will also be properly quoted. If the index name is already quoted or contains '(' or '{{', then this method will do nothing. See also \yii\sphinx\quoteSimpleTableName. public string quoteIndexName ( $name )$name string Index name return string The properly quoted index name

rbac\ManagerInterface removeChild()

removeChild() public abstract method Removes a child from its parent. Note, the child item is not deleted. Only the parent-child relationship is removed. public abstract boolean removeChild ( $parent, $child )$parent yii\rbac\Item $child yii\rbac\Item return boolean Whether the removal is successful

filters\AccessRule $allow

$allow public property Whether this is an 'allow' rule or 'deny' rule. public boolean $allow = null