| 1 |
<?php
|
| 2 |
function phptemplate_search_theme_form($form) {
|
| 3 |
return _phptemplate_callback('search-theme-form', array('form' => $form));
|
| 4 |
}
|
| 5 |
|
| 6 |
function MyDrupal_Universal_primary($items = array()) {
|
| 7 |
$menu = menu_get_item(variable_get('menu_primary_menu', 0));
|
| 8 |
$output = '<div class="title">' . '</div>';
|
| 9 |
$output .= theme('links', $items);
|
| 10 |
return $output;
|
| 11 |
}
|
| 12 |
|
| 13 |
function MyDrupal_Universal_regions() {
|
| 14 |
return array(
|
| 15 |
'right' => t('right sidebar'),
|
| 16 |
'content' => t('content'),
|
| 17 |
'header' => t('header'),
|
| 18 |
'footer' => t('footer'),
|
| 19 |
);
|
| 20 |
}
|