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
|
<?php
// All EasyGiant code is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
// See COPYRIGHT.txt and LICENSE.txt.
if (!defined('EG')) die('Direct access not allowed!');
class Route
{
//controller,action couples that can be reached by the browser
//set 'all' if you want that all the controller,action couples can be reached by the browser
public static $allowed = array(
'adminissues,main',
'adminissues,form',
'adminpassword,form',
'adminusers,login',
'adminusers,logout',
'adminusers,forceout',
'adminusers,retype',
'adminusers,main',
'adminusers,form',
'adminusers,associate',
'admintalk,main',
'admintalk,form',
'adminregusers,main',
'adminregusers,associate',
'adminhardware,main',
'adminhardware,ask',
'adminhardware,form',
'admindeletion,main',
'adminparams,form',
'adminnews,main',
'adminnews,form',
'adminboxes,main',
'adminboxes,form',
'adminmessages,main',
'adminmessages,form',
'adminhistory,main',
);
//it can be 'yes' or 'no'
//set $rewrite to 'yes' if you want that EasyGiant rewrites the URLs according to what specified in $map
public static $rewrite = 'no';
//define the urls of your website
//you have to set $rewrite to 'yes'
public static $map = array();
}
|