forked from skydiver/wn-forms-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBackendHelpers.php
90 lines (83 loc) · 2.48 KB
/
BackendHelpers.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
namespace Martin\Forms\Classes;
use Backend;
use BackendAuth;
class BackendHelpers
{
/**
* Return a Backend URL based on a matrix of URLS and permissions
*
* @param array $urls Matrix of permissions and URLs
* @param string $default Default URL
*
* @return string
*/
public static function getBackendURL(array $urls, string $default): string
{
$user = BackendAuth::getUser();
foreach ($urls as $permission => $URL) {
if ($user->hasAccess($permission)) {
return Backend::url($URL);
}
}
return Backend::url($urls[$default]);
}
/**
* Check if Translator plugin is installed
*
* @return boolean
*/
public static function isTranslatePlugin(): bool
{
return class_exists('\RainLab\Translate\Classes\Translator') && class_exists('\RainLab\Translate\Models\Message');
}
/**
* Render an array|object as HTML list (UL > LI)
*
* @param mixed $data List items
*
* @return string
*/
public static function array2ul($data): string
{
$return = '';
foreach ($data as $index => $item) {
if (!is_string($item)) {
$return .= '<li>' . htmlspecialchars($index, ENT_QUOTES) . '<ul>' . self::array2ul($item) . "</ul></li>";
} else {
$return .= '<li>';
if (is_object($data)) {
$return .= htmlspecialchars($index, ENT_QUOTES) . ' - ';
}
$return .= htmlspecialchars($item, ENT_QUOTES) . '</li>';
}
}
return $return;
}
/**
* Anonymize an IPv4 address
* (credits: https://github.com/geertw/php-ip-anonymizer)
*
* @param string $address IPv4 address
*
* @return string Anonymized address
*/
public static function anonymizeIPv4(string $address): string
{
return inet_ntop(inet_pton($address) & inet_pton("255.255.255.0"));
}
/**
* Extract string from curly braces
*
* @param string $pattern Pattern to replace
* @param string $replacement Replacement string
* @param string $subject Strings to replace
*
* @return string
*/
public static function replaceToken(string $pattern, string $replacement = null, string $subject): string
{
$pattern = '/{{\s*(' . $pattern . ')\s*}}/';
return preg_replace($pattern, $replacement, $subject);
}
}