You are here

function encrypt_ctools_plugin_directory in Encrypt 7.2

Same name and namespace in other branches
  1. 7.3 encrypt.module \encrypt_ctools_plugin_directory()

Implements hook_ctools_plugin_directory().

Tell ctools about our plugins.

File

./encrypt.module, line 621
Main Encrypt Drupal File.

Code

function encrypt_ctools_plugin_directory($module, $plugin) {
  if ($module == 'encrypt') {
    return 'plugins/' . $plugin;
  }
}