-user name shows in the top right corner.

-fixed bug with development mode not being recognized by Zend.
This commit is contained in:
martin 2011-01-30 18:20:47 -05:00
parent 2310c24f26
commit dc6fcec0e3
6 changed files with 17 additions and 18 deletions

View file

@ -8,9 +8,8 @@
<?php echo $this->headLink() ?>
</head>
<body>
<?php //echo $this->loggedInAs() ?>
<div id="nowplayingbar"><?php echo $this->partial('partialviews/header.phtml', array("user" => "martin")); ?></div>
<div id="nowplayingbar"><?php echo $this->partial('partialviews/header.phtml', array("user" => $this->loggedInAs())); ?></div>
<div class="logo"></div>
<?php $partial = array('menu.phtml', 'default');

View file

@ -9,7 +9,7 @@
</head>
<body>
<div id="nowplayingbar"><?= $this->partial('partialviews/header.phtml') ?></div>
<div id="nowplayingbar"><?= $this->partial('partialviews/header.phtml', array("user" => $this->loggedInAs())) ?></div>
<div class="logo"></div>
<?php $partial = array('menu.phtml', 'default');

View file

@ -8,7 +8,7 @@
<?php echo $this->headLink() ?>
</head>
<body>
<div id="nowplayingbar"><?= $this->partial('partialviews/header.phtml') ?></div>
<div id="nowplayingbar"><?= $this->partial('partialviews/header.phtml', array("user" => $this->loggedInAs())) ?></div>
<div id="nav"><?php echo $this->navigation()->menu()->setRenderInvisible(true) ?></div>
<div class="wrapper">