22 lines
467 B
PHP
22 lines
467 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
// Global Helper Functions
|
|
|
|
if (!function_exists('e')) {
|
|
function e(mixed $value): string
|
|
{
|
|
return \App\Core\View::escape($value);
|
|
}
|
|
}
|
|
|
|
if (!function_exists('money')) {
|
|
function money(float|int|string $amount): string
|
|
{
|
|
// Indonesian Rupiah format: Rp 1.234.567
|
|
// No decimal places, use dot as thousands separator
|
|
return 'Rp ' . number_format((float)$amount, 0, ',', '.');
|
|
}
|
|
}
|