helpers\BaseInflector hasIntl()

hasIntl() protected static method protected static boolean hasIntl ( )return boolean If intl extension is loaded

rbac\BaseManager getPermission()

getPermission() public method Returns the named permission. public null|yii\rbac\Permission getPermission ( $name )$name string The permission name. return null|yii\rbac\Permission The permission corresponding to the specified name. Null is returned if no such permission.

helpers\BaseConsole prompt()

prompt() public static method Prompts the user for input and validates it public static string prompt ( $text, $options = [] )$text string Prompt string $options array The options to validate the input: required: whether it is required or not default: default value if no input is inserted by the user pattern: regular expression pattern to validate user input validator: a callable function to validate input. The function must accept two parameters: input: the user input to validate

helpers\BaseConsole ansiFormat()

ansiFormat() public static method Will return a string formatted with the given ANSI style public static string ansiFormat ( $string, $format = [] )$string string The string to be formatted $format array An array containing formatting values. You can pass any of the FG_*, BG_* and TEXT_* constants and also xtermFgColor() and xtermBgColor() to specify a format.

web\CookieCollection removeAll()

removeAll() public method Removes all cookies. public void removeAll ( )throws yii\base\InvalidCallException if the cookie collection is read only

mail\MessageInterface setFrom()

setFrom() public abstract method Sets the message sender. public abstract $this setFrom ( $from )$from string|array Sender email address. You may pass an array of addresses if this message is from multiple people. You may also specify sender name in addition to email address using format: [email => name]. return $this Self reference.

web\XmlResponseFormatter format()

format() public method Formats the specified response. public void format ( $response )$response yii\web\Response The response to be formatted.

di\Container resolveCallableDependencies()

resolveCallableDependencies() public method (available since version 2.0.7) Resolve dependencies for a function. This method can be used to implement similar functionality as provided by invoke() in other components. public array resolveCallableDependencies ( callable $callback, $params = [] )$callback callable Callable to be invoked. $params array The array of parameters for the function, can be either numeric or associative. return array The resolved dependencies. throws yii\base\

validators\FileValidator $maxSize

$maxSize public property The maximum number of bytes required for the uploaded file. Defaults to null, meaning no limit. Note, the size limit is also affected by upload_max_filesize and post_max_size INI setting and the 'MAX_FILE_SIZE' hidden field value. See getSizeLimit() for details. See also: http://php.net/manual/en/ini.core.php#ini.upload-max-filesize http://php.net/post-max-size getSizeLimit() $tooBig for the customized message for a file that is too big. public integer $maxSize =

db\sqlite\QueryBuilder dropPrimaryKey()

dropPrimaryKey() public method Builds a SQL statement for removing a primary key constraint to an existing table. public string dropPrimaryKey ( $name, $table )$name string The name of the primary key constraint to be removed. $table string The table that the primary key constraint will be removed from. return string The SQL statement for removing a primary key constraint from an existing table. throws yii\base\NotSupportedException this is not supported by SQLite