function theme_glossary_search_form in Glossary 7
Same name and namespace in other branches
- 5.2 glossary.module \theme_glossary_search_form()
- 5 glossary.module \theme_glossary_search_form()
- 6 glossary.module \theme_glossary_search_form()
Theme the glossary search form.
File
- ./
glossary.module, line 242 - Glossary terms will be automatically marked with links to their descriptions.
Code
function theme_glossary_search_form($variables) {
$form = $variables['0'];
return '<div class="container-inline">' . drupal_render_children($form) . '</div>';
}