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\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\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\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 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 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 getTypeUrl()

getTypeUrl() protected method Returns the informational link URL for a given PHP type/class. See also addTypeLinks(). protected string|null getTypeUrl ( $class, $method )$class string The type or class name. $method string|null The method name. return string|null The informational link URL.

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.