Skip to content

Instantly share code, notes, and snippets.

@Casperhr
Created October 2, 2014 07:49
Show Gist options
  • Select an option

  • Save Casperhr/01d4e6193fc84b544634 to your computer and use it in GitHub Desktop.

Select an option

Save Casperhr/01d4e6193fc84b544634 to your computer and use it in GitHub Desktop.
<li class='<?php echo(isset($navigationActiveState['translation']) && $this->request->named['segment_id']=='default' ? 'active' : '') ?>'>
<?php echo $this->Html->link('<i class="fa fa-table"></i> Translations Q8', array(
'plugin' => 'translate',
'admin' => true,
'controller' => 'backend',
'action' => 'index',
'segment_id' => 'default'
), array('escape' => false)); ?>
</li>
<li class='<?php echo(isset($navigationActiveState['translation']) && $this->request->named['segment_id']=='f24' ? 'active' : '') ?>'>
<?php echo $this->Html->link('<i class="fa fa-table"></i> Translations F24', array(
'plugin' => 'translate',
'admin' => true,
'controller' => 'backend',
'action' => 'index',
'segment_id' => 'f24'
), array('escape' => false)); ?>
</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment