You are here

function synonyms_search_ctools_plugin_directory in Synonyms 7

Implements hook_ctools_plugin_directory().

File

synonyms_search/synonyms_search.module, line 11
Provides synonyms integration with searching.

Code

function synonyms_search_ctools_plugin_directory($owner, $plugin_type) {
  switch ($owner) {
    case 'synonyms':
      switch ($plugin_type) {
        case 'behavior':
          return 'plugins/' . $plugin_type;
      }
      break;
  }
}