You are here

function vud_ctools_plugin_directory in Vote Up/Down 6.2

Same name and namespace in other branches
  1. 6.3 vud.module \vud_ctools_plugin_directory()
  2. 7.2 vud.module \vud_ctools_plugin_directory()
  3. 7 vud.module \vud_ctools_plugin_directory()

Implementation of hook_ctools_plugin_dierctory() to let the system know we implement widget plugins.

File

./vud.module, line 212

Code

function vud_ctools_plugin_directory($module, $plugin) {
  if ($module == 'vud') {
    return $plugin;
  }
}