sintonia/application/views/helpers/LoggedInAs.php
martin dc6fcec0e3 -user name shows in the top right corner.
-fixed bug with development mode not being recognized by Zend.
2011-01-30 18:20:47 -05:00

17 lines
326 B
PHP

<?php
class Airtime_View_Helper_LoggedInAs extends Zend_View_Helper_Abstract
{
public function loggedInAs ()
{
$username = "";
$auth = Zend_Auth::getInstance();
if ($auth->hasIdentity()) {
$username = $auth->getIdentity()->login;
}
return $username;
}
}
?>