Last active
November 5, 2015 17:30
-
-
Save tmsss/39802c8b84ffafcfec12 to your computer and use it in GitHub Desktop.
Customize the Search Block in Drupal 7 (from https://www.drupal.org/node/1021902)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function template_preprocess_page(&$variables){ | |
| $search_form = drupal_get_form('search_form'); | |
| $search_form_box = drupal_render($search_form); | |
| $variables['search_box'] = $search_form_box; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment