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
|
<?php ///////////////////////////////////////////// // Shadowed Portal // ///////////////////////////////////////////// // Copyright (C) 2003 by Shadowed Works. // // Please read our terms and conditions // // at http://www.shad0wed.com/. // ///////////////////////////////////////////// // !Donnot Edit This File! // ///////////////////////////////////////////// $variables = "default"; $dir = stripslashes($root."/modules"); $handle=@opendir($dir); while ($file = readdir($handle)) { if ($file != "." && $file != ".." && $file != "index.php") { if(is_dir($dir."/".$file)) { if(file_exists($dir."/".$file."/variables.php")) { $vars = ""; require($dir."/".$file."/variables.php"); if($vars != "") { $variables = $variables . "," . $vars; } } } } } closedir($handle); $variables_arr = explode(",",$variables); foreach($variables_arr as $single_variable) { $var['$single_variable'] = ""; } ?>
|