| Versionen | |
|---|---|
| drupal6 – drupal7 | search_forms() |
modules/
<?php
function search_forms() {
$forms['search_theme_form'] = array(
'callback' => 'search_box',
'callback arguments' => array('search_theme_form'),
);
$forms['search_block_form'] = array(
'callback' => 'search_box',
'callback arguments' => array('search_block_form'),
);
return $forms;
}
?>
Kommentare
Kommentar hinzufügen