class BaseHookRenderEvent extends Event

Class BaseHookRenderEvent

Methods

__construct($code, array $arguments = array())

No description

$this
setCode( string $code)

Set the code of the hook

string
getCode()

Get the code of the hook

$this
setArguments( array $arguments)

Set all arguments

array
getArguments()

Get all arguments

$this
setArgument( string $key, string $value)

add or replace an argument

mixed|null
getArgument( string $key, string|null $default = null)

Get an argument

bool
hasArgument($key)

Check if an argument exists with this key

Details

at line 31
__construct($code, array $arguments = array())

Parameters

$code
array $arguments

at line 43
$this setCode( string $code)

Set the code of the hook

Parameters

string $code

Return Value

$this

at line 55
string getCode()

Get the code of the hook

Return Value

string

at line 66
$this setArguments( array $arguments)

Set all arguments

Parameters

array $arguments

Return Value

$this

at line 78
array getArguments()

Get all arguments

Return Value

array all arguments

at line 90
$this setArgument( string $key, string $value)

add or replace an argument

Parameters

string $key
string $value

Return Value

$this

at line 103
mixed|null getArgument( string $key, string|null $default = null)

Get an argument

Parameters

string $key
string|null $default

Return Value

mixed|null the value of the argument or $default if it not exists

at line 114
bool hasArgument($key)

Check if an argument exists with this key

Parameters

$key

Return Value

bool true if it exists, else false