You are here

function classified_ctools_plugin_directory in Classified Ads 7.3

Same name and namespace in other branches
  1. 6.3 classified.module \classified_ctools_plugin_directory()

Implements hook_ctools_plugin_directory().

File

./classified.module, line 874
A pure D7 classified ads module inspired by the ed_classified module.

Code

function classified_ctools_plugin_directory($module, $plugin) {
  if ($module == 'ctools' && $plugin == 'content_types') {
    $ret = 'plugins/' . $plugin;
  }
  else {
    $ret = NULL;
  }
  return $ret;
}