-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·85 lines (65 loc) · 1.64 KB
/
index.php
File metadata and controls
executable file
·85 lines (65 loc) · 1.64 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
<?php require("classes/cls.constants.php"); include("classes/cls.paths.php"); ?>
<?php include("zscript_meta.php"); ?>
<body>
<?php include("includes/wrap_head.php"); ?>
<?php
//echo '<div class="row clearfix">'.REF_ACTIVE_URL.' => '.$my_redirect .' id: '.$com_active .' sec: '.$comMenuSection.' type:'.$comMenuType.' seo:'.$seo_name.'</div>';
//echobr($GLOBALS['SOCIAL_CONNECT']);
switch($my_redirect)
{
case "index.php":
include("includes/page_index.php");
break;
case "content.php":
case "contact.php":
case "events.php":
case "contacc.php":
case "news.php":
case "library.php":
case "sitemap.php":
case "policies.php":
case "result.php":
case "pillars.php":
case "profiles.php":
case "404.php":
case "calendar.php":
case "partners.php":
case "gallery.php":
case "register.php":
case "places.php":
include("includes/page_content.php");
break;
case "rescat.php":
include("includes/page_resource_cats.php");
break;
case "organizations.php":
include("includes/page_resource_orgs.php");
break;
case "county.php":
include("includes/page_resource_county.php");
break;
case "polls.php":
include("poll_arch.php");
break;
/*case "contacc.php":
include("includes/page_contacc.php");
break;
case "gallery.php":
include("includes/page_gallery.php");
break;*/
case "directory.php":
include("includes/page_directory.php");
break;
case "account.php":
case "signin.php":
case "signup.php":
case "reset.php":
case "profile.php":
include("includes/page_profile.php");
break;
}
?>
<?php include("includes/wrap_foot.php"); ?>
<?php include("zscript_vary.php"); ?>
</body>
</html>