CC-2049: Log in/out versus sign in/out of admin interface
Fixed by removing "Sign in" terminology. Moved "About" link to underneath the "Help" menu. Simplified the upper right hand corner of the Admin interface.
This commit is contained in:
parent
aa58225e68
commit
7379da83c6
|
@ -96,6 +96,13 @@ $pages = array(
|
|||
'label' => 'User Manual',
|
||||
'uri' => "http://en.flossmanuals.net/airtime/",
|
||||
'target' => "_blank"
|
||||
),
|
||||
array(
|
||||
'label' => 'About',
|
||||
'module' => 'default',
|
||||
'controller' => 'dashboard',
|
||||
'action' => 'about',
|
||||
'resource' => 'dashboard'
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
|
@ -26,5 +26,10 @@ class DashboardController extends Zend_Controller_Action
|
|||
// action body
|
||||
}
|
||||
|
||||
public function aboutAction()
|
||||
{
|
||||
// action body
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -40,17 +40,8 @@
|
|||
<?php }?>
|
||||
<div class="personal-block">
|
||||
<ul>
|
||||
<li><a id="about-link" href="#">About</a></li>
|
||||
<li> </li>
|
||||
<li>Signed in:</li>
|
||||
<li class="name"><?php echo $this->user ?></li>
|
||||
<li><a href="/Login/logout">Logout</a></li>
|
||||
<li><span class="name"><?php echo $this->user ?></span> | <a href="/Login/logout">Logout</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="jquery_jplayer_1" class="jp-jplayer" style="width:0px; height:0px;"></div>
|
||||
|
||||
<div id="about-txt" style="display: none;">
|
||||
<a href="http://airtime.sourcefabric.org">Airtime</a> <?php echo AIRTIME_VERSION ?>, the open radio software for scheduling and remote station management.<br>
|
||||
© 2011 <a href="http://www.sourcefabric.org">Sourcefabric</a> o.p.s 2011. Airtime is distributed under the <a href="http://www.gnu.org/licenses/gpl-3.0-standalone.html">GNU GPL v.3</a>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue