breadcrumb.config.php 517 B

1234567891011121314151617181920
  1. <?php
  2. $hideSubMenus = 1;
  3. if ($modx->getOption('site_start') == $modx->resource->get('id')) {
  4. $homeLink = '';
  5. } else {
  6. $homeLink = "<a href=\"{$modx->getOption('site_url')}\" title=\"home\">Home</a> &raquo; ";
  7. }
  8. $outerTpl = "@CODE:<div id=\"breadcrumbnav\">
  9. {$homeLink}[[+wf.wrapper]]
  10. </div>";
  11. $innerTpl = '@CODE:[[+wf.wrapper]]';
  12. $rowTpl = '@CODE: ';
  13. $activeParentRowTpl = '@CODE:<a href="[[+wf.link]]" title="[[+wf.title]]">[[+wf.linktext]]</a> &raquo; [[+wf.wrapper]]';
  14. $hereTpl = '@CODE:[[+wf.linktext]]';