Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1.     // Output a list of links    
  2.     $items = array();
  3.     foreach ($trail as $value) {
  4.       $items[] = l($value['title'], $value['path'], array('attributes' => array('title' => $value['title']) ) );
  5.     }
  6.     return theme('item_list', array('items' => $items));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement