-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.php
73 lines (64 loc) · 1.35 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
declare(strict_types=1);
use Illuminate\Routing\Route;
use Permafrost\CurrentRoute\CurrentRouteInfo;
/**
* Returns the current Route object.
*/
function current_route(): ?Route
{
return current_route_info()->route;
}
/**
* Return a class containing information on the current route.
*
* @return \Permafrost\CurrentRoute\CurrentRouteInfo
*/
function current_route_info(): CurrentRouteInfo
{
return CurrentRouteInfo::create();
}
/**
* Returns the action of the current route.
*/
function current_route_action(): ?string
{
return current_route_info()->action;
}
/**
* Returns the action method name of the current route.
*/
function current_route_method(): ?string
{
return current_route_info()->actionMethod;
}
/**
* Returns true if one of the specified wildcard patterns matches the
* name of the current route.
*
* @param array|string $namePatterns
*
* @return bool
*/
function current_route_matches($namePatterns): bool
{
return current_route_info()->nameMatches($namePatterns);
}
/**
* Returns the name of the current route.
*/
function current_route_name(): ?string
{
return current_route_info()->name;
}
/**
* Returns true if $name matches the name of the current route.
*
* @param string $name
*
* @return bool
*/
function current_route_named(string $name): bool
{
return current_route_info()->named($name);
}