summaryrefslogtreecommitdiffstats
path: root/application/modules/fbgui/layouts/rz.phtml
blob: cecf38e9c2608ef198b0cda6fe60d1e6911f5029 (plain) (blame)
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
<?php echo $this->doctype(); ?>
 
<html xmlns="http://www.w3.org/1999/xhtml" lang="de" xml:lang="de">
<head>
 
<?php
$request = Zend_Controller_Front::getInstance()->getRequest();
$this->headTitle()->append(ucwords($request->getControllerName()));
$this->headTitle()->append(ucwords($request->getActionName()));
echo $this->headTitle()."\n";
echo $this->headMeta()."\n";
echo $this->headStyle()."\n";
echo $this->headLink()."\n";
echo $this->headScript()."\n";
?>
<script src='/media/js/jquery.min.js'></script> 
<script src='/media/js/jquery-ui.min.js'></script> 
<script src='/media/js/script.js'></script> 

<script src='/media/js/keyboard.js'></script> 

<link href="/media/css/keyboard.css" media="screen" rel="stylesheet" type="text/css" /> 
</head>
<body>
<div id='sidepannel'>
	<div id="logo"><div id="logo-bar-gray"></div></div> 
	<div id="sidepannel-top"> 	
		<!-- <h1><a href=/><</a> <a href=/fbgui/>fbgui</a></h1> -->
	<!--	<ul>
			<li>
			<ul>
			
			</ul>
			</li>
			
		</ul>
</ul> -->
	</div>  
</div>
<div id='main'>
	<div id="head-bg"> 
		<div id="head">
			<h1>OpenSLX Preboot Portal</h1> 
			<h2>Rechenzentrum Universit&auml;t Freiburg</h2> 
		</div> 
	</div> 
	<div id="logo-bar-red"></div>
	<div id="head-titlebar">
	<?php
	echo ucwords($request->getControllerName()) . " > " . ucwords($request->getActionName());
	?>	
	</div> 
	<div id="content"> 
	<?php echo $this->layout()->content; ?>
	</div>
	
	<div id="footer"  class="footer flexbox flex"> 
		<div style='float:left;padding-left:5px;'><button onclick='fbgui.shutDown();'>Shutdown</button></div>
	   <div style='padding:5px;'>
	   		<a onclick="$('#debug .v1').toggle();$('#debug .v2').toggle();">display Debug</a> // 
	   		<i>last edit: <?php echo date("m\/Y",filectime('index.php'));?></i> // 
	   		<i>version: 0.1.1</i> 
		</div>	
	</div>
</div>

<div id='debug'>
	<div class='v1'>
		<a onclick="$('#debug .v1').toggle();$('#debug .v2').toggle();">
			<img src='/media/img/down.png' />
		</a>
	</div>
	<div class='v2' style='display:none;'>		
		<div style='text-align:right;'>
			<a onclick="$('#debug .v1').toggle();$('#debug .v2').toggle();">
				<img src='/media/img/up.png' />
			</a>
		</div>
		<?php print_a('Session',$_SESSION,'GET',$_GET,'POST',$_POST); ?>		
	</div>
</div>
</body> 
</html>