You are here

function twitter_block_ctools_plugin_directory in Twitter Block 6

Same name and namespace in other branches
  1. 7 twitter_block.module \twitter_block_ctools_plugin_directory()

Implementation of hook_ctools_plugin_directory().

File

./twitter_block.module, line 207
A module to provide simple Twitter blocks using the Twitter Search API.

Code

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