diff options
| author | Simon | 2011-03-12 16:19:13 +0100 |
|---|---|---|
| committer | Simon | 2011-03-12 16:19:13 +0100 |
| commit | ce03c3beb219c803e4c1ab7f1cd34768843f2b29 (patch) | |
| tree | 8fc46115818a62a161ac5f9706d7cbd28f6c39b3 /application | |
| parent | layout geƤndert (diff) | |
| download | pbs2-ce03c3beb219c803e4c1ab7f1cd34768843f2b29.tar.gz pbs2-ce03c3beb219c803e4c1ab7f1cd34768843f2b29.tar.xz pbs2-ce03c3beb219c803e4c1ab7f1cd34768843f2b29.zip | |
sql korrigiert, layout angepasst, .htaccess angepasst
Diffstat (limited to 'application')
| -rw-r--r-- | application/layouts/main.phtml | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/application/layouts/main.phtml b/application/layouts/main.phtml index f870566..525de9e 100644 --- a/application/layouts/main.phtml +++ b/application/layouts/main.phtml @@ -61,8 +61,10 @@ echo $this->headScript()."\n"; </div> </div> <div id="logo-bar-red"></div> - <div id="head-titlebar"> - Name des Controllers + <div id="head-titlebar"> + <?php + echo ucwords($request->getControllerName()) . " > " . ucwords($request->getActionName()); + ?> </div> <div id="content"> <?php echo $this->layout()->content; ?> @@ -70,8 +72,11 @@ echo $this->headScript()."\n"; </div> <div id="footer" class="footer flexbox flex"> - <div style='padding:5px;'> <i>last edit: 03/2011 // version: 0.1.1</i> -</div> - + <div style='padding:5px;'> + <a onclick="$('#debug').slideToggle();">display Debug</a> // <i>last edit: <?php echo date("m\/Y",filectime('index.php'));?> // version: 0.1.1</i> + </div> +</div> +<div id='debug'> +<?php print_a('Session',$_SESSION,'GET',$_GET,'POST',$_POST); ?> </body> </html> |
