summaryrefslogtreecommitdiffstats
path: root/usr/local/www/head.inc
blob: 47fcd1979bcc6d40df097ca011c1e75f795b8e9f (plain)
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
<?php
/* 
 *   if user has selected a custom template, use it.
 *   otherwise default to pfsense tempalte
 */
if($config['theme'] <> "")
	$g['theme'] = $config['theme'];
else
	$g['theme'] = "pfsense";

/*
 *  If this device is an apple ipod/iphone
 *  switch the theme to one that works with it.
 */
$apple_ua = array("iPhone","iPod");
foreach($apple_ua as $useragent)
	if(strstr($_SERVER['HTTP_USER_AGENT'], $useragent))
		$g['theme'] = "pfsense";

$pagetitle = gentitle( $pgtitle );

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
	<title><?=$pagetitle;?></title>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
        <?php if (strpos($_SERVER["SCRIPT_FILENAME"], "wizard.php") !== false &&
                  file_exists("{$g['www_path']}/themes/{$g['theme']}/wizard.css")): ?>
					<?php outputCSSFileInline("{$g['www_path']}/themes/{$g['theme']}/wizard.css"); ?>
        <?php else: ?>
        	<link rel="stylesheet" href="/themes/<?php echo $g['theme']; ?>/all.css" media="all" />
        <?php endif; ?>
		<?php 
			if(file_exists("{$g['www_path']}/niftycssCode.css")) 
				outputCSSFileInline("{$g['www_path']}/niftycssCode.css"); 
			if(file_exists("{$g['www_path']}/niftycssprintCode.css")) 
				outputCSSPrintFileInline("{$g['www_path']}/niftycssprintCode.css");
			if(file_exists("{$g['www_path']}/javascript/niftyjsCode.js")) 
				outputJavaScriptFileInline("{$g['www_path']}/javascript/niftyjsCode.js"); 
		?>
		<script type="text/javascript">
			var theme = "<?php echo $g['theme']; ?>";
		</script>
		<?php outputJavaScriptFileInline("{$g['www_path']}/themes/{$g['theme']}/loader.js"); ?>
<?php
		if($_GET['enablefirebuglite']) {
			outputJavaScriptFileInline("{$g['www_path']}/javascript/pi.js");
			outputJavaScriptFileInline("{$g['www_path']}/javascript/firebug-lite.js");
		}
		outputJavaScriptFileInline("{$g['www_path']}/javascript/scriptaculous/prototype.js");
		outputJavaScriptFileInline("{$g['www_path']}/javascript/scriptaculous/scriptaculous.js");
		outputJavaScriptFileInline("{$g['www_path']}/javascript/scriptaculous/effects.js");
		outputJavaScriptFileInline("{$g['www_path']}/javascript/scriptaculous/dragdrop.js");
		if(file_exists("{$g['www_path']}/javascript/global.js"))
			outputJavaScriptFileInline("{$g['www_path']}/javascript/global.js");

	/*
	 *	Find all javascript files that need to be included
	 *	for this page ... from the arrays ... :)
	 *	Coded by: Erik Kristensen
	 */

	$dir  = trim(basename($_SERVER["SCRIPT_FILENAME"]), '.php');
	$path = "{$g['www_path']}/javascript/" . $dir . "/";
	if (is_dir($path)) {
		if ($dh = opendir($path)) {
			while (($file = readdir($dh)) !== false) {
		   		if (is_dir($file)) continue;
				//echo "\t".'<script type="text/javascript" src="/javascript/'.$dir.'/'.$file.'"></script>'."\n";
				outputJavaScriptFileInline("{$g['www_path']}/javascript/{$dir}/{$file}"); 
			}
			closedir($dh);
		}
	}

if (!isset($closehead))
	echo "</head>";
?>
OpenPOWER on IntegriCloud