function synonyms_behaviors in Synonyms 7
Retrieve information about all cTools plugins of type 'synonyms behavior'.
Return value
array Array of information on all available synonyms behavior plugins
7 calls to synonyms_behaviors()
- synonyms_behavior_implementation_delete in ./
synonyms.module - Delete behavior implementation from database.
- synonyms_behavior_implementation_save in ./
synonyms.module - Save the provided synonyms behavior implementation into the database.
- synonyms_bundle_load in ./
synonyms.module - Test if provided entity type and bundle are applicable for having synonyms.
- synonyms_entity_type_load in ./
synonyms.module - Test if entity type is applicable for having synonyms.
- synonyms_features_export in ./
synonyms.features.inc - Implements hook_features_export().
File
- ./
synonyms.module, line 1025 - Provide synonyms feature for Drupal entities.
Code
function synonyms_behaviors() {
ctools_include('plugins');
return ctools_get_plugins('synonyms', 'behavior');
}