Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1.     $output = '';
  2.     $themed_output = array();
  3.     foreach ($trail as $value) {
  4.       $output .= '<a href=\"' . base_path($value['path']) . '\">' . $value['title'] . '</a>';
  5.       $themed_output[] = array(
  6.         'title' => $value['title'],
  7.         'href' => base_path($value['path']),
  8.       );
  9.     }
  10.     dsm($output);
  11.     dsm(theme('links', $themed_output));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement