web\GroupUrlRule $prefix

$prefix public property The prefix for the pattern part of every rule declared in $rules. The prefix and the pattern will be separated with a slash. public string $prefix = null

web\GoneHttpException __construct()

__construct() public method Constructor. public void __construct ( $message = null, $code = 0, Exception $previous = null )$message string Error message $code integer Error code $previous Exception The previous exception used for the exception chaining.

web\ForbiddenHttpException __construct()

__construct() public method Constructor. public void __construct ( $message = null, $code = 0, Exception $previous = null )$message string Error message $code integer Error code $previous Exception The previous exception used for the exception chaining.

web\ErrorHandler renderRequest()

renderRequest() public method Renders the global variables of the request. List of global variables is defined in $displayVars. See also $displayVars. public string renderRequest ( )return string The rendering result

web\ErrorHandler renderPreviousExceptions()

renderPreviousExceptions() public method Renders the previous exception stack for a given Exception. public string renderPreviousExceptions ( $exception )$exception Exception The exception whose precursors should be rendered. return string HTML content of the rendered previous exceptions. Empty string if there are none.

web\ErrorHandler renderFile()

renderFile() public method Renders a view file as a PHP script. public string renderFile ( $_file_, $_params_ )$_file_ string The view file. $_params_ array The parameters (name-value pairs) that will be extracted and made available in the view file. return string The rendering result

web\ErrorHandler renderException()

renderException() protected method Renders the exception. protected void renderException ( $exception )$exception Exception The exception to be rendered.

web\ErrorHandler renderCallStackItem()

renderCallStackItem() public method Renders a single call stack element. public string renderCallStackItem ( $file, $line, $class, $method, $args, $index )$file string|null Name where call has happened. $line integer|null Number on which call has happened. $class string|null Called class name. $method string|null Called function/method name. $args array Array of method arguments. $index integer Number of the call stack element. return string HTML content of the render

web\ErrorHandler isCoreFile()

isCoreFile() public method Determines whether given name of the file belongs to the framework. public boolean isCoreFile ( $file )$file string Name to be checked. return boolean Whether given name of the file belongs to the framework.

web\ErrorHandler htmlEncode()

htmlEncode() public method Converts special characters to HTML entities. public string htmlEncode ( $text )$text string To encode. return string Encoded original text.