function apachesolr_search_block_configure in Apache Solr Search 6.3
Same name and namespace in other branches
- 8 apachesolr_search.module \apachesolr_search_block_configure()
- 7 apachesolr_search.module \apachesolr_search_block_configure()
Implements hook_block_configure().
1 call to apachesolr_search_block_configure()
- apachesolr_search_block in ./
apachesolr_search.module - Implements hook_block().
File
- ./
apachesolr_search.module, line 582 - Provides a content search implementation for node content for use with the Apache Solr search application.
Code
function apachesolr_search_block_configure($delta = '') {
if ($delta != 'sort') {
require_once drupal_get_path('module', 'apachesolr') . '/apachesolr_search.admin.inc';
return apachesolr_search_mlt_block_form($delta);
}
}