You are here

function encrypt_ctools_plugin_directory in Encrypt 7.3

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

Implements hook_ctools_plugin_directory().

Tell ctools about our plugins.

File

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

Code

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