开发者

In Symfony, how can I add a 'selected' class to the currently selected page in my navigation? [duplicate]

开发者 https://www.devze.com 2022-12-23 20:12 出处:网络
This question already has answers here: 开发者_如何学C Navigation, highlight current page (7 answers)
This question already has answers here: 开发者_如何学C Navigation, highlight current page (7 answers) Closed 8 years ago.

My navigation is written in the layout.php template

It looks like this:

<ul id="nav">
  <li><a href="item1">Item 1</a></li>
  <li><a href="item1">Item 2</a></li>
  <li><a href="item1">Item 3</a></li>
  <li><a href="item1">Item 4</a></li>
</ul>

What is the best way to get a class="current" on the currently selected page?


Use a helper and/or a partial to generate the menu. So lets say you have a partial _navigation.php in the module 'default':

// in layout:

<?php include_partial('default/navigation', array(
   'navigation'=>$array, 
   'active'=>has_slot('navigationActiveUrl') 
       ? get_slot('navigationActiveUrl') 
       : null)
 ); ?>

// in modules/default/templates/_navigation.php
<?php if(isset($navigation)): ?>
  <ul>
    <?php foreach($navigation as $name => $url): ?>
       <?php echo content_tag('li', link_to($name, $url), array('class' => 
         (isset($active) && $active == $url ? 'active' : null)
       )); ?>
    <?php endforeach; ?>
  </ul>
<?php endif; ?>

// in some template file:
<?php slot('navigationActiveUrl'); ?>/internal/uri<?php end_slot(); ?>

you could also just use a helper and hard code the html in there if you wont need to modify it much. using a partial simply gives you an easy way to change the markup without changing the helper function. Like wise you could make a helper function and still have it call the same partial.


An alternative method you should consider is using JavaScript if possible. I'm going to give an example using jQuery

$('#nav li a').each(function(){
  //You might have to do some string manipulation on the line below, but you get the idea
  if($(this).attr('href') == window.location.pathname) { $(this).addClass('current'); }; 
});

I know JS is not always an option, but it works out pretty neatly and nicely. Wild guess: The rest of your php code will not care whether the link has the selected class or not, only your css or javascript code will. If this is the case, the above method isn't really a bad option


I go for a simpler approach (but it may be more resource intensive):

<ul id="nav">
  <li<?php echo ($this->getActionName('item1')) ? ' class="current"' : ''; ?>><a href="item1">Item 1</a></li>
  <li<?php echo ($this->getActionName('item2')) ? ' class="current"' : ''; ?>><a href="item1">Item 2</a></li>
  <li<?php echo ($this->getActionName('item3')) ? ' class="current"' : ''; ?>><a href="item1">Item 3</a></li>
  <li<?php echo ($this->getActionName('item4')) ? ' class="current"' : ''; ?>><a href="item1">Item 4</a></li>
</ul>


I always use slot() and is_slot to mark tabs as selected.

On each page I display in the template I 'mark' the page with a slot with the slots name

/projects -> slot('toptabs') projects end_slot() and put

if get_slot('toptabs') == 'projects' { class="selected" }

stupid solution but is quick and works fine.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号