daily pastebin goal
41%
SHARE
TWEET

Untitled

a guest Jan 29th, 2018 49 in 6 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Html rendered output
  2. <?php
  3. $attributes = [
  4.     'wrapper' => ['class' => 'wrapper-class'],
  5.     'separator' => ['class' => 'separator-class', 'innerAttrs' => ['class' => 'separator-inner-class']],
  6.     'item' => ['class' => 'item-class', 'innerAttrs' => ['class' => 'item-inner-class']],
  7.     'itemWithoutLink' => ['class' => 'itemWithoutLink-class', 'innerAttrs' => ['class' => 'itemWithoutLink-inner-class']],
  8. ];
  9.  
  10. $this->Breadcrumbs
  11.     ->add('joe', null, $attributes['itemWithoutLink'])
  12.     ->add('black', '/foo/bar', $attributes['itemWithoutLink']);
  13. echo $this->Breadcrumbs->render($attributes['wrapper'], $attributes['separator']);
  14. ?>
  15.  
  16. <nav aria-label="breadcrumb">
  17.     <ol class="wrapper-class">
  18.         <li class="itemWithoutLink-class" aria-current="page">
  19.             <span class="itemWithoutLink-inner-class">joe</span>
  20.         </li>
  21.         <li class="itemWithoutLink-class">
  22.             <a href="/foo/bar" class="itemWithoutLink-inner-class">black</a>
  23.         </li>
  24.     </ol>
  25. </nav>
  26.  
  27.  
  28.  
  29.  
  30. # Test rendered output
  31. <?php
  32. $result = $this->Breadcrumbs
  33.     ->add('joe', null, $attributes['itemWithoutLink'])
  34.     ->add('black', '/foo/bar', $attributes['itemWithoutLink'])
  35.     ->render($attributes['wrapper'], $attributes['separator']);
  36. ?>
  37. <nav aria-label="breadcrumb">
  38.     <ol class="wrapper-class">
  39.         <li class="itemWithoutLink-class" class="breadcrumb-item active" aria-current="page">
  40.             <span class="itemWithoutLink-inner-class">joe</span>
  41.         </li>
  42.         <li class="itemWithoutLink-class" class="breadcrumb-item">
  43.             <a href="/foo/bar" class="itemWithoutLink-inner-class">black</a>
  44.         </li>
  45.     </ol>
  46. </nav>
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top