You are here

function countries_ctools_plugin_directory in Countries 7.2

Same name and namespace in other branches
  1. 8 countries.module \countries_ctools_plugin_directory()

Implements hook_ctools_plugin_directory().

File

./countries.module, line 982
Defines the field and entity information for countries.

Code

function countries_ctools_plugin_directory($module, $plugin) {
  if (in_array($module, array(
    'ctools',
  )) && $plugin == 'arguments') {
    return "plugins/{$plugin}";
  }
}