class UnhandledExceptionEvent extends GenericHookEvent

Class UnhandledExceptionEvent

Properties

protected array $hookValues from GenericHookEvent
protected array $hookFields from GenericHookEvent
protected array $hookFieldsFlip from GenericHookEvent
Exception $exception
mixed $request

Methods

create(array $params)

Create a GenericHookEvent using key-value pairs.

createOrdered(array $hookFields, array $hookValues)

Create a GenericHookEvent using ordered parameters.

array
getHookValues()

No description

mixed
getReturnValues() deprecated

No description

addReturnValues(mixed $fResult) deprecated

No description

__get($name)

No description

__set($name, $value)

No description

__isset($name)

No description

__unset($name)

No description

bool
hasField(string $name)

Determine whether the hook supports the given field.

__construct($e, $request)

No description

Details

in GenericHookEvent at line 136
static GenericHookEvent create(array $params)

Create a GenericHookEvent using key-value pairs.

Parameters

array $params Ex: array('contactID' => &$contactID, 'contentPlacement' => &$contentPlacement).

Return Value

GenericHookEvent

in GenericHookEvent at line 154
static GenericHookEvent createOrdered(array $hookFields, array $hookValues)

Create a GenericHookEvent using ordered parameters.

Parameters

array $hookFields Ex: array(0 => 'contactID', 1 => 'contentPlacement').
array $hookValues Ex: array(0 => &$contactID, 1 => &$contentPlacement).

Return Value

GenericHookEvent

at line 58
array getHookValues()

Return Value

array Ex: array(0 => &$contactID, 1 => &$contentPlacement).

in GenericHookEvent at line 190
mixed getReturnValues() deprecated

deprecated

Return Value

mixed

in GenericHookEvent at line 199
GenericHookEvent addReturnValues(mixed $fResult) deprecated

deprecated

Parameters

mixed $fResult

Return Value

GenericHookEvent

in GenericHookEvent at line 209
__get($name)

Parameters

$name

in GenericHookEvent at line 218
__set($name, $value)

Parameters

$name
$value

in GenericHookEvent at line 227
__isset($name)

Parameters

$name

in GenericHookEvent at line 235
__unset($name)

Parameters

$name

in GenericHookEvent at line 251
bool hasField(string $name)

Determine whether the hook supports the given field.

The field may or may not be empty. Use isset() or empty() to check that.

Parameters

string $name

Return Value

bool

at line 50
__construct($e, $request)

Parameters

$e
$request