-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelpers.php
More file actions
99 lines (86 loc) · 1.67 KB
/
helpers.php
File metadata and controls
99 lines (86 loc) · 1.67 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
<?php
/**
* This file is made to simplify usage for the developer.
* This file contains 'helper function' in order to use it later in any file you want in the whole APP.
* It will import in "public/index.php" file.
*/
use App\controllers\ErrorController;
/**
* Get the base path
*/
function basePath($path = '')
{
return __DIR__ . '/' . $path;
}
/**
* Inspect a value
* To check your code while you're working...
*/
function inspect($value)
{
echo "<pre>";
var_dump($value);
echo "</pre>";
}
/**
* Inspect a value and KILL the whole code after it
* To check your code while you're working...
*/
function inspectAndDie($value)
{
echo "<pre>";
var_dump($value);
echo "</pre>";
die();
}
/**
* Load a View
*/
function loadView($name, $data = [])
{
$viewPath = basePath("App/views/{$name}.view.php");
// inspect($viewPath);
if (file_exists($viewPath)) {
extract($data);
require $viewPath;
} else {
// echo "View {$name} not Found!";
$name_trimmed = trim($name, '/');
// inspectAndDie($name_trimmed);
ErrorController::notFound("View '{$name_trimmed}' not Found!");
}
}
/**
* Sanitize Data
* Add more layer for security
*
* @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;
}
/**
* For the API
* @param array $data
* @return array "json"
*/
function jsonData($data = [])
{
// Set response header
header('Content-Type: application/json');
// Return JSON-encoded data
return json_encode($data);
}