You are here

varbase_homepage_panel.features.inc in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7.2

File

modules/features/varbase_homepage_panel/varbase_homepage_panel.features.inc
View source
<?php

/**
 * @file
 * varbase_homepage_panel.features.inc
 */

/**
 * Implements hook_ctools_plugin_api().
 */
function varbase_homepage_panel_ctools_plugin_api($module = NULL, $api = NULL) {
  if ($module == "page_manager" && $api == "pages_default") {
    return array(
      "version" => "1",
    );
  }
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => "1",
    );
  }
}