Same name and namespace in other branches
  1. 10 core/modules/search/tests/modules/search_embedded_form/search_embedded_form.module \search_embedded_form_preprocess_search_result()
  2. 8.9.x core/modules/search/tests/modules/search_embedded_form/search_embedded_form.module \search_embedded_form_preprocess_search_result()
  3. 9 core/modules/search/tests/modules/search_embedded_form/search_embedded_form.module \search_embedded_form_preprocess_search_result()

Adds the test form to search results.

File

modules/search/tests/search_embedded_form.module, line 67
Test module implementing a form that can be embedded in search results.

Code

function search_embedded_form_preprocess_search_result(&$variables) {
  $form = drupal_get_form('search_embedded_form_form');
  $variables['snippet'] .= drupal_render($form);
}