You are here

farm_fields.features.inc in farmOS 7

File

modules/farm/farm_fields/farm_fields.features.inc
View source
<?php

/**
 * @file
 * farm_fields.features.inc
 */

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

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