-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhelpers.php
51 lines (43 loc) · 1.38 KB
/
helpers.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
declare(strict_types=1);
use ManaPHP\Helper\Container;
use ManaPHP\Http\InputInterface;
use ManaPHP\Http\RouterInterface;
use ManaPHP\Mvc\View\AssetInterface;
if (!function_exists('attr_nv')) {
function attr_nv(string $name, string $default = ''): string
{
$input = Container::get(InputInterface::class);
return sprintf('name="%s" value="%s"', $name, e($input->get($name, $default)));
}
}
if (!function_exists('attr_inv')) {
function attr_inv(string $name, string $default = ''): string
{
if ($pos = strpos($name, '[')) {
$id = substr($name, $pos + 1, -1);
} else {
$id = $name;
}
$input = Container::get(InputInterface::class);
return sprintf('id="%s" name="%s" value="%s"', $id, $name, e($input->get($name, $default)));
}
}
if (!function_exists('action')) {
function action(string|array $args = [], bool|string $scheme = false): string
{
return Container::get(RouterInterface::class)->createUrl($args, $scheme);
}
}
if (!function_exists('url')) {
function url(string|array $args, bool|string $scheme = false): string
{
return Container::get(RouterInterface::class)->createUrl($args, $scheme);
}
}
if (!function_exists('asset')) {
function asset(string $path): string
{
return Container::get(AssetInterface::class)->get($path);
}
}