search.inc in Synonyms 7
File
synonyms_search/plugins/behavior/search.inc
View source
<?php
$plugin = array(
'title' => t('Search'),
'description' => t('Integrate synonyms with Search module'),
'interface' => 'SearchSynonymsBehavior',
'enabled callback' => 'synonyms_search_behavior_search_enabled',
'disabled callback' => 'synonyms_search_behavior_search_disabled',
);
function synonyms_search_behavior_search_enabled($behavior_definition, $behavior_implementation) {
if ($behavior_implementation['entity_type'] == 'taxonomy_term') {
module_load_include('inc', 'synonyms_search', 'synonyms_search.pages');
synonyms_search_reindex_nodes_by_vocabulary(taxonomy_vocabulary_machine_name_load($behavior_implementation['bundle']));
}
}
function synonyms_search_behavior_search_disabled($behavior_definition, $behavior_implementation) {
if ($behavior_implementation['entity_type'] == 'taxonomy_term') {
module_load_include('inc', 'synonyms_search', 'synonyms_search.pages');
synonyms_search_reindex_nodes_by_vocabulary(taxonomy_vocabulary_machine_name_load($behavior_implementation['bundle']));
}
}