You are here

configurable_breadcrumbs.module in Panels Extras 7

Same filename and directory in other branches
  1. 6 configurable_breadcrumbs/configurable_breadcrumbs.module

File

configurable_breadcrumbs/configurable_breadcrumbs.module
View source
<?php

// $Id$ configurable_breadcrumbs.module,v 1.0 2011/07/25 16:40:48 chriscalip Exp $

/**
 * Implements hook_ctools_plugin_directory().
 *
 * It simply tells panels where to find the .inc files that define various
 * args, contexts, content_types. In this case the subdirectory of
 * region_pane/content_types are used.
 */
function configurable_breadcrumbs_ctools_plugin_directory($module, $plugin) {
  if ($module == 'ctools' && $plugin == 'content_types') {
    return "plugins/content_types";
  }
}