You are here

function countdown_ctools_plugin_directory in Countdown 7.2

Implements hook_ctools_plugin_directory().

File

./countdown.module, line 83
Count to, or from, a specified date and display the output in a block

Code

function countdown_ctools_plugin_directory($owner, $plugin_type) {
  if ($owner == 'countdown' && $plugin_type == 'countdown') {
    return 'plugins/countdown';
  }
}