-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.php
More file actions
52 lines (44 loc) · 1.1 KB
/
example.php
File metadata and controls
52 lines (44 loc) · 1.1 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
<?php
/*
.---------------------------------------------------------------------------.
| |
| Author: Hany alsamman (project administrator && original founder) |
| Copyright (c) 2013, CODEXC.COM. All Rights Reserved. |
'---------------------------------------------------------------------------'
*/
/**
* CONTROLLERS.php
*
* @package CONTROLLERS
* @author Hany alsamman < hany.alsamman@gmail.com >
* @copyright CODEXC.COM
*/
class CONTROLLERS
{
/**
* CONTROLLERS::__construct()
*
* @return
*/
public function __construct()
{
/**
* initialization the security system
* parsing all incoming data [get,post,cookie,request]
* cleaning all values and keys by wonderful ways
*/
$secure = new SECURITY();
$secure->parse_incoming();
}
/**
* CONTROLLERS::__destruct()
*
* This will be called automatically at the end of scope
*
* @return
*/
public function __destruct()
{
}
}
?>