function apachesolr_search_block_save in Apache Solr Search 8
Same name and namespace in other branches
- 6.3 apachesolr_search.module \apachesolr_search_block_save()
- 7 apachesolr_search.module \apachesolr_search_block_save()
Implements hook_block_save().
File
- ./
apachesolr_search.module, line 562 - Provides a content search implementation for node content for use with the Apache Solr search application.
Code
function apachesolr_search_block_save($delta = '', $edit = array()) {
if ($delta != 'sort') {
require_once drupal_get_path('module', 'apachesolr') . '/apachesolr_search.admin.inc';
apachesolr_search_mlt_save_block($edit, $delta);
}
}