You are here

faqpanels.module in Panels Extras 7

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

File

faqpanels/faqpanels.module
View source
<?php

// $Id$ faqpanels.module,v 1.0 2011/07/25 16:34:07 chriscalip Exp $

/**
 * Implements hook_ctools_plugin_directory().
 * 
 * It simply tells panels where to find the .inc files that define various
 * args, contexts, content_types.
 */
function faqpanels_ctools_plugin_directory($module, $plugin) {
  $allowed_module = array(
    'ctools',
    'page_manager',
  );
  if (!in_array($module, $allowed_module)) {
    return;
  }
  $allowed_plugin = array(
    'content_types',
    'tasks',
  );
  if (!in_array($plugin, $allowed_plugin)) {
    return;
  }
  return "plugins/{$plugin}";
}