Fr3nch13/CakePHP Utilities

MissingCellTemplateException extends MissingTemplateException
in package

Used when a template file for a cell cannot be found.

Table of Contents

Properties

$_attributes  : array<string|int, mixed>
Array of attributes that are passed in from the constructor, and made available in the view when a development error is displayed.
$_defaultCode  : int
Default exception code
$_messageTemplate  : string
Template string that has attributes sprintf()'ed into it.
$_responseHeaders  : array<string|int, mixed>|null
Array of headers to be passed to {@link \Cake\Http\Response::withHeader()}
$filename  : string
$name  : string
$paths  : array<string|int, string>
$templateName  : string|null
$type  : string

Methods

__construct()  : mixed
Constructor
formatMessage()  : string
Get the formatted exception message.
getAttributes()  : array<string|int, mixed>
Get the passed in attributes
getCode()  : int
responseHeader()  : array<string|int, mixed>|null
Get/set the response header to be used

Properties

$_attributes

Array of attributes that are passed in from the constructor, and made available in the view when a development error is displayed.

protected array<string|int, mixed> $_attributes = []

$_defaultCode

Default exception code

protected int $_defaultCode = 0

$_messageTemplate

Template string that has attributes sprintf()'ed into it.

protected string $_messageTemplate = ''

$_responseHeaders

Array of headers to be passed to {@link \Cake\Http\Response::withHeader()}

protected array<string|int, mixed>|null $_responseHeaders

Methods

__construct()

Constructor

public __construct(string $name, string $file[, array<string|int, string> $paths = [] ][, int|null $code = null ][, Throwable|null $previous = null ]) : mixed
Parameters
$name : string

The Cell name that is missing a view.

$file : string

The view filename.

$paths : array<string|int, string> = []

The path list that template could not be found in.

$code : int|null = null

The code of the error.

$previous : Throwable|null = null

the previous exception.

formatMessage()

Get the formatted exception message.

public formatMessage() : string
Return values
string

getAttributes()

Get the passed in attributes

public getAttributes() : array<string|int, mixed>
Tags
psalm-return

array{name: string, file: string, paths: array}

Return values
array<string|int, mixed>

getCode()

public getCode() : int

Gets the Exception code.

Return values
int

responseHeader()

Get/set the response header to be used

public responseHeader([array<string|int, mixed>|string|null $header = null ][, string|null $value = null ]) : array<string|int, mixed>|null

Use HttpException::setHeaders() instead. Response headers should be set for HttpException only.

See also

Parameters
$header : array<string|int, mixed>|string|null = null

A single header string or an associative array of "header name" => "header value"

$value : string|null = null

The header value.

Return values
array<string|int, mixed>|null

        
On this page

Search results