function apachesolr_panels_forms in Apache Solr Panels 6
Same name and namespace in other branches
- 6.3 apachesolr_panels.module \apachesolr_panels_forms()
- 7 apachesolr_panels.module \apachesolr_panels_forms()
Implementation of hook_forms().
File
- ./
apachesolr_panels.module, line 24 - Integrates Apache Solr Search with Panels.
Code
function apachesolr_panels_forms() {
$forms['apachesolr_panels_search_form'] = array(
'callback' => 'search_form',
);
return $forms;
}