base\Component behaviors()

behaviors() public method Returns a list of behaviors that this component should behave as. Child classes may override this method to specify the behaviors they want to behave as. The return value of this method should be an array of behavior objects or configurations indexed by behavior names. A behavior configuration can be either a string specifying the behavior class or an array of the following structure: 'behaviorName' => [ 'class' => 'BehaviorClass', 'property1' => '

widgets\MaskedInput run()

run() public method Executes the widget. public string run ( )return string The result of widget execution to be outputted.

web\CompositeUrlRule parseRequest()

parseRequest() public method Parses the given request and returns the corresponding route and parameters. public array|boolean parseRequest ( $manager, $request )$manager yii\web\UrlManager The URL manager $request yii\web\Request The request component return array|boolean The parsing result. The route and the parameters are returned as an array. If false, it means this rule cannot be used to parse this path info.

caching\Cache delete()

delete() public method Deletes a value with the specified key from cache public boolean delete ( $key )$key mixed A key identifying the value to be deleted from cache. This can be a simple string or a complex data structure consisting of factors representing the key. return boolean If no error happens during deletion

authclient\signature\BaseMethod generateSignature()

generateSignature() public abstract method Generates OAuth request signature. public abstract string generateSignature ( $baseString, $key )$baseString string Signature base string. $key string Signature key. return string Signature string.

base\Application $language

$language public property The language that is meant to be used for end users. It is recommended that you use IETF language tags. For example, en stands for English, while en-US stands for English (United States). See also $sourceLanguage. public string $language = 'en-US'

helpers\BaseInflector underscore()

underscore() public static method Converts any "CamelCased" into an "underscored_word". public static string underscore ( $words )$words string The word(s) to underscore

db\mssql\Schema quoteSimpleTableName()

quoteSimpleTableName() public method Quotes a table name for use in a query. A simple table name has no schema prefix. public string quoteSimpleTableName ( $name )$name string Table name. return string The properly quoted table name.

base\Application getAuthManager()

getAuthManager() public method Returns the auth manager for this application. public yii\rbac\ManagerInterface getAuthManager ( )return yii\rbac\ManagerInterface The auth manager application component. Null is returned if auth manager is not configured.

base\Model safeAttributes()

safeAttributes() public method Returns the attribute names that are safe to be massively assigned in the current scenario. public string[] safeAttributes ( )return string[] Safe attribute names