function defaultcontent_ctools_plugin_directory in Default Content 7
Same name and namespace in other branches
- 7.2 defaultcontent.module \defaultcontent_ctools_plugin_directory()
Implements hook_ctools_plugin_directory().
File
- ./
defaultcontent.module, line 443 - Module file for the Default content module which allow export and import of default content in a Drupal site.
Code
function defaultcontent_ctools_plugin_directory($module, $plugin) {
if ($module == 'defaultcontent' && $plugin == 'alter') {
return 'plugins';
}
}