4
0

aside_configure.phtml 1.4 KB

12345678910111213141516171819202122
  1. <ul class="nav nav-list aside">
  2. <li class="nav-header"><?php echo Minz_Translate::t ('configuration'); ?></li>
  3. <li class="item<?php echo Minz_Request::actionName () == 'display' ? ' active' : ''; ?>">
  4. <a href="<?php echo _url ('configure', 'display'); ?>"><?php echo Minz_Translate::t ('display_configuration'); ?></a>
  5. </li>
  6. <li class="item<?php echo Minz_Request::actionName () == 'reading' ? ' active' : ''; ?>">
  7. <a href="<?php echo _url ('configure', 'reading'); ?>"><?php echo Minz_Translate::t ('reading_configuration'); ?></a>
  8. </li>
  9. <li class="item<?php echo Minz_Request::actionName () == 'archiving' ? ' active' : ''; ?>">
  10. <a href="<?php echo _url ('configure', 'archiving'); ?>"><?php echo Minz_Translate::t ('archiving_configuration'); ?></a>
  11. </li>
  12. <li class="item<?php echo Minz_Request::actionName () == 'sharing' ? ' active' : ''; ?>">
  13. <a href="<?php echo _url ('configure', 'sharing'); ?>"><?php echo Minz_Translate::t ('sharing'); ?></a>
  14. </li>
  15. <li class="item<?php echo Minz_Request::actionName () == 'shortcut' ? ' active' : ''; ?>">
  16. <a href="<?php echo _url ('configure', 'shortcut'); ?>"><?php echo Minz_Translate::t ('shortcuts'); ?></a>
  17. </li>
  18. <li class="separator"></li>
  19. <li class="item<?php echo Minz_Request::actionName () == 'users' ? ' active' : ''; ?>">
  20. <a href="<?php echo _url ('configure', 'users'); ?>"><?php echo Minz_Translate::t ('users'); ?></a>
  21. </li>
  22. </ul>