You are here

enterprise_base.features.inc in Enterprise Base 7

Same filename and directory in other branches
  1. 7.3 enterprise_base.features.inc

File

enterprise_base.features.inc
View source
<?php

/**
 * @file
 * enterprise_base.features.inc
 */

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

/**
 * Implements hook_views_api().
 */
function enterprise_base_views_api() {
  list($module, $api) = func_get_args();
  if ($module == "views" && $api == "views_default") {
    return array(
      "version" => "3.0",
    );
  }
}