You are here

features_template.features.inc in Features Items Template 7

opensanmateo_layout.features.inc

File

features_template.features.inc
View source
<?php

/**
 * @file
 * opensanmateo_layout.features.inc
 */

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