You are here

dxpr_theme_helper.features.inc in DXPR Theme Helper 7

File

dxpr_theme_helper.features.inc
View source
<?php

/**
 * @file
 * dxpr_theme_helper.features.inc
 */

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

/**
 * Implements hook_views_api().
 */
function dxpr_theme_helper_views_api($module = NULL, $api = NULL) {
  return array(
    "api" => "3.0",
  );
}