4
0

aside_configure.phtml 813 B

12345678910111213
  1. <div class="nav nav-list aside">
  2. <li class="nav-header"><?php echo Translate::t ('configuration'); ?></li>
  3. <li class="item<?php echo Request::actionName () == 'display' ? ' active' : ''; ?>">
  4. <a href="<?php echo Url::display (array ('c' => 'configure', 'a' => 'display')); ?>"><?php echo Translate::t ('general_and_reading'); ?></a>
  5. </li>
  6. <li class="item<?php echo Request::actionName () == 'categorize' ? ' active' : ''; ?>">
  7. <a href="<?php echo Url::display (array ('c' => 'configure', 'a' => 'categorize')); ?>"><?php echo Translate::t ('categories'); ?></a>
  8. </li>
  9. <li class="item<?php echo Request::actionName () == 'shortcut' ? ' active' : ''; ?>">
  10. <a href="<?php echo Url::display (array ('c' => 'configure', 'a' => 'shortcut')); ?>"><?php echo Translate::t ('shortcuts'); ?></a>
  11. </li>
  12. </div>