-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelpers.php
More file actions
117 lines (95 loc) · 2.07 KB
/
helpers.php
File metadata and controls
117 lines (95 loc) · 2.07 KB
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
113
114
115
116
117
<?php
/**
* Get the base path
*
* @param string $path
* @return string
*/
//---------------------------------------------------------------------------FETCHING FILES
function basePath($path) {
return __DIR__ . "/" . $path;
}
/**
* Load specific page view
*
* @param string $name
* @param array $data
* @return void
*/
function loadView($name, $data = []) {
$viewPath = basePath("App/views/{$name}.php");
if (file_exists($viewPath)) {
extract($data);
require $viewPath;
}else{
echo "ERROR: Specified view path: {$viewPath} does not exist";
};
}
/**
* Load specific page partial
*
* @param string $name
* @return void
*/
function loadPartial($name, $data = []) {
$partialPath = basePath("App/views/partials/{$name}.php");
if (file_exists($partialPath)) {
extract($data);
require $partialPath;
}else{
echo "ERROR: Specified partial path: {$partialPath} does not exist";
};
}
/**
* Value Inspector
*
* @param mixed $value
* @return void
*
*/
//---------------------------------------------------------------------------INSPECTIONG VALUES
function inspectValues($value) {
echo "<pre>";
var_dump($value);
echo "</pre>";
};
/**
* Value Inspector & script halter
*
* @param mixed $value
* @return void
*
*/
function inspectValueAndHold($value) {
echo "<pre>";
die(var_dump($value));
};
//---------------------------------------------------------------------------STRING FORMATTERS
/**
* Format salary string into standard /w regards to dollar currency
*
* @param string $salary
* @return string Formatter Salary
*/
function formatSalary($salary){
return "$".number_format($salary, 2, ".", ",");
};
/**
* Method to sanitise input
*
*@param string $rawInput
*@return string
*/
function sanitizeInput($rawInput){
return filter_var(trim($rawInput), FILTER_SANITIZE_SPECIAL_CHARS);
}
/**
* A method to redirect to a given url
*
* @param string $url
* @return void
*/
function redirect($url){
header("Location: {$url}");
exit;
}