You are here

function forward_ctools_plugin_directory in Forward 7.3

Same name and namespace in other branches
  1. 7.2 forward.module \forward_ctools_plugin_directory()

Implements hook_ctools_plugin_directory().

File

./forward.module, line 182
Allows forwarding of entities by email, and provides a record of how often each has been forwarded.

Code

function forward_ctools_plugin_directory($module, $plugin) {

  // Tell Panels where our plugin is
  if ($module == 'ctools' && !empty($plugin)) {
    return "plugins/{$plugin}";
  }
}