authclient\AuthAction redirect()

redirect() public method Redirect to the given URL or simply close the popup window. public yii\web\Response redirect ( $url, $enforceRedirect = true )$url mixed URL to redirect, could be a string or array config to generate a valid URL. $enforceRedirect boolean Indicates if redirect should be performed even in case of popup window. return yii\web\Response Response instance.

rbac\ManagerInterface removeAllRules()

removeAllRules() public abstract method Removes all rules. All roles and permissions which have rules will be adjusted accordingly. public abstract void removeAllRules ( )

base\Module $controllerNamespace

$controllerNamespace public property The namespace that controller classes are in. This namespace will be used to load controller classes by prepending it to the controller class name. If not set, it will use the controllers sub-namespace under the namespace of this module. For example, if the namespace of this module is foo\bar, then the default controller namespace would be foo\bar\controllers. See also the guide section on autoloading to learn more about defining namespaces and how class

gii\generators\module\Generator successMessage()

successMessage() public method Returns the message to be displayed when the newly generated code is saved successfully. Child classes may override this method to customize the message. public string successMessage ( )return string The message to be displayed when the newly generated code is saved successfully.

helpers\BaseConsole hideCursor()

hideCursor() public static method Hides the cursor by sending ANSI DECTCEM code ?25l to the terminal. Use showCursor() to bring it back. Do not forget to show cursor when your application exits. Cursor might stay hidden in terminal after exit. public static void hideCursor ( )

db\QueryTrait where()

where() public method Sets the WHERE part of the query. See yii\db\QueryInterface::where() for detailed documentation. See also: andWhere() orWhere() public $this where ( $condition )$condition string|array The conditions that should be put in the WHERE part. return $this The query object itself

elasticsearch\Connection getIsActive()

getIsActive() public method Returns a value indicating whether the DB connection is established. public boolean getIsActive ( )return boolean Whether the DB connection is established

base\ErrorHandler handleHhvmError()

handleHhvmError() public method (available since version 2.0.6) Handles HHVM execution errors such as warnings and notices. This method is used as a HHVM error handler. It will store exception that will be used in fatal error handler public boolean handleHhvmError ( $code, $message, $file, $line, $context, $backtrace )$code integer The level of the error raised. $message string The error message. $file string The filename that the error was raised in. $line integer The line number

db\mysql\Schema loadColumnSchema()

loadColumnSchema() protected method Loads the column information into a yii\db\ColumnSchema object. protected yii\db\ColumnSchema loadColumnSchema ( $info )$info array Column information return yii\db\ColumnSchema The column schema object

validators\RangeValidator $allowArray

$allowArray public property Whether to allow array type attribute. public boolean $allowArray = false