You are here

function forward_ctools_plugin_directory in Forward 7.2

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

Implements hook_ctools_plugin_directory().

File

./forward.module, line 143

Code

function forward_ctools_plugin_directory($module, $plugin) {

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