FunctionHandler
Less than 1 minute
FunctionHandler
Properties
view
private View $view
Methods
__construct
public __construct(View $view): void
Parameters
Parameter | Type | Description |
---|---|---|
$view | View |
layout
public layout(): string
url
Generates a URL based on the provided controller, action, parameters, and absolute flag.
public url(?string $controller, ?string $action, array $params, bool $absolute): URL
Parameters
Parameter | Type | Description |
---|---|---|
$controller | string | the name of the controller |
$action | string | the name of the action |
$params | array | an array of parameters to be included in the URL |
$absolute | bool | determines whether the generated URL should be absolute or relative |
date
Returns a date string formatted to the current set date format.
public date(string $date = 'now'): string
Parameters
Parameter | Type | Description |
---|---|---|
$date | string |
time
Returns a time string formatted to the current set time format.
public time(string $time = 'now'): string
Parameters
Parameter | Type | Description |
---|---|---|
$time | string |
timestamp
Return a date/time type as a timestamp string.
public timestamp(string $value = 'now'): string
This is for making it quick and easy to output consistent timestamp strings.
Parameters
Parameter | Type | Description |
---|---|---|
$value | string |
datetime
Return a formatted date as a string.
public datetime(mixed $value = 'now', ?string $format): string
Parameters
Parameter | Type | Description |
---|---|---|
$value | mixed | This can be practically any date type. Either a \Hazaar\Util\DateTime object, epoch int, or even a string. |
$format | string | Optionally specify the format to display the date. Otherwise the current default is used. |
Generated by Hazaar API Doc Generator