aside_stats.phtml 693 B

123456789101112
  1. <ul class="nav nav-list aside">
  2. <li class="nav-header"><?php echo _t('admin.stats'); ?></li>
  3. <li class="item<?php echo Minz_Request::actionName() == 'index' ? ' active' : ''; ?>">
  4. <a href="<?php echo _url('stats', 'index'); ?>"><?php echo _t('admin.stats.menu.main'); ?></a>
  5. </li>
  6. <li class="item<?php echo Minz_Request::actionName() == 'idle' ? ' active' : ''; ?>">
  7. <a href="<?php echo _url('stats', 'idle'); ?>"><?php echo _t('admin.stats.menu.idle'); ?></a>
  8. </li>
  9. <li class="item<?php echo Minz_Request::actionName() == 'repartition' ? ' active' : ''; ?>">
  10. <a href="<?php echo _url('stats', 'repartition'); ?>"><?php echo _t('admin.stats.menu.repartition'); ?></a>
  11. </li>
  12. </ul>