-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.php
112 lines (99 loc) · 1.81 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?php
// declare(strict_types=1);
/**
* Get the base path
*
* @param string $path
* @return string
*/
function basePath($path = '')
{
return __DIR__ . '/' . $path;
}
/**
* Load a view
*
* @param string $name
* @return void
*
*/
function loadView($name, $data = []) {
$viewPath = basePath("App/views/{$name}.view.php");
// file_exists($viewPath) ? require $viewPath : echo "View '{$name} not found.'";
if (file_exists($viewPath)) {
extract($data);
require $viewPath;
} else {
echo "View $name not found";
}
}
/**
* Load a partial
*
* @param string $name
* @return void
*
*/
function loadPartial($name, $data = []) {
$partialPath = basePath("App/views/partials/{$name}.php");
// file_exists($partialPath) ? require $partialPath : echo "Partial '{$name} not found.'";
if (file_exists($partialPath)) {
extract($data);
require_once $partialPath;
} else {
echo "Partial $name not found!";
}
}
/**
* Inspect a value(s)
*
* @param mixed $value
* @return void
*/
function inspect($value)
{
echo '<pre>';
var_dump($value);
echo '</pre>';
}
/**
* Inspect a value(s) and die
*
* @param mixed $value
* @return void
*/
function inspectAndDie($value)
{
echo '<pre>';
die(var_dump($value));
echo '</pre>';
}
/**
* Format salary
*
* @param string $salary
* @return string Formatted salary
*/
function formatSalary($salary) {
return '$ ' . number_format(floatval($salary), 0, ',', ' ');
}
/**
* Sanitize data
*
* @param string $dirty
*
* @return string
*/
function sanitize($dirty) {
return filter_var(trim($dirty), FILTER_SANITIZE_SPECIAL_CHARS);
}
/**
* Redirect to a given URL
*
* @param string $url
* @return void
*/
function redirect($url) {
header('Location: ' . $url);
exit;
}