Created
April 3, 2014 04:13
-
-
Save b1rdex/9948164 to your computer and use it in GitHub Desktop.
symfony1 breadcrumbs builder based on filter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="main container"> | |
<ol class="breadcrumb"> | |
<?php | |
$crumbs = $sf_user->getFlash("breadcrumbs")->getRawValue(); | |
$last = array_splice($crumbs, -1); | |
foreach ($crumbs as $route => $name): ?> | |
<li><a href="<?php echo url_for($route); ?>"><?php echo $name; ?></a></li> | |
<?php endforeach ?> | |
<li class="active"><?php echo array_pop($last); ?></li> | |
</ol> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment