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
|
<?php ///////////////////////////////////////////// // Shadowed Portal // ///////////////////////////////////////////// // Copyright (C) 2003 by Shadowed Works. // // Please read our terms and conditions // // at http://www.shad0wed.com/. // ///////////////////////////////////////////// // !Donnot Edit This File! // ///////////////////////////////////////////// $dir_vars = stripslashes($root."/modules"); $handle_vars=@opendir($dir_vars); while ($file_vars = readdir($handle_vars)) { if ($file_vars != "." && $file_vars != ".." && $file_vars != "index.php") { if(is_dir($dir_vars."/".$file_vars)) { $mod_name = $file_vars; $mod_root = $root."/modules/".$file_vars; $mod_url = $url."/load.php?mod=".$file_vars; $mod_post = $img_url."/load.php?mod=".$file_vars; $admin_root = $root."/modules/".$file_vars; $admin_url = $url."/load.php?mod=".$file_vars."&method=admin"; $admin_post = $img_url."/load.php?mod=".$file_vars."&method=admin"; if(file_exists($dir_vars."/".$file_vars."/include.php")) { require($dir_vars."/".$file_vars."/include.php"); } } } } closedir($handle_vars); ?>
|