filters\Cors headerize()

headerize() protected method Convert any string (including php headers with HTTP prefix) to header format like : X-PINGOTHER -> X-Pingother X_PINGOTHER -> X-Pingother protected string headerize ( $string )$string string String to convert return string The result in "header" format

mongodb\rbac\MongoDbManager detectLoop()

detectLoop() protected method Checks whether there is a loop in the authorization item hierarchy. protected boolean detectLoop ( $parent, $child )$parent yii\rbac\Item The parent item $child yii\rbac\Item The child item to be added to the hierarchy return boolean Whether a loop exists

mongodb\file\Cursor current()

current() public method Return the current element This method is required by the interface Iterator. public mixed current ( )return mixed Current row

mongodb\Cache gc()

gc() public method Removes the expired data values. public void gc ( $force = false )$force boolean Whether to enforce the garbage collection regardless of $gcProbability. Defaults to false, meaning the actual deletion happens with the probability as specified by $gcProbability.

web\Session setName()

setName() public method Sets the name for the current session. This is a wrapper for PHP session_name(). public void setName ( $value )$value string The session name for the current session, must be an alphanumeric string. It defaults to "PHPSESSID".

db\mssql\Schema quoteSimpleColumnName()

quoteSimpleColumnName() public method Quotes a column name for use in a query. A simple column name has no prefix. public string quoteSimpleColumnName ( $name )$name string Column name. return string The properly quoted column name.

db\SchemaBuilderTrait decimal()

decimal() public method (available since version 2.0.6) Creates a decimal column. public yii\db\ColumnSchemaBuilder decimal ( $precision = null, $scale = null )$precision integer Column value precision, which is usually the total number of digits. First parameter passed to the column type, e.g. DECIMAL(precision, scale). This parameter will be ignored if not supported by the DBMS. $scale integer Column value scale, which is usually the number of digits after the decimal point. Second p

web\Controller redirect()

redirect() public method Redirects the browser to the specified URL. This method is a shortcut to yii\web\Response::redirect(). You can use it in an action by returning the yii\web\Response directly: // stop executing this action and redirect to login page return $this->redirect(['login']); public yii\web\Response redirect ( $url, $statusCode = 302 )$url string|array The URL to be redirected to. This can be in one of the following formats: a string representing a URL (e.g. "http://

swiftmailer\Message getCharset()

getCharset() public method Returns the character set of this message. public string getCharset ( )return string The character set of this message.

rbac\DbManager init()

init() public method Initializes the application component. This method overrides the parent implementation by establishing the database connection. public void init ( )