| 2 |
function phptemplate_menu_tree($pid = 1) { |
function phptemplate_menu_tree($pid = 1) { |
| 3 |
if ($tree = menu_tree($pid)) { |
if ($tree = menu_tree($pid)) { |
| 4 |
$output .= "<ul>"; |
$output .= "<ul>"; |
| 5 |
|
if (function_exists('base_path')) { |
| 6 |
|
$base_path = base_path(); |
| 7 |
|
} |
| 8 |
|
$url = $base_path . 'node'; |
| 9 |
if ($pid == 1) { |
if ($pid == 1) { |
| 10 |
$output .= "<li><a href=\"node\">home</a></li>"; |
$output .= "<li><a href=\"" . $url . "\">home</a></li>"; |
| 11 |
}; |
}; |
| 12 |
$output .= $tree; |
$output .= $tree; |
| 13 |
$output .= "</ul>"; |
$output .= "</ul>"; |