You are here

commons_answers.features.inc in Drupal Commons 6.2

File

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

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

/**
 * Implementation of hook_views_api().
 */
function commons_answers_views_api() {
  return array(
    'api' => '2',
  );
}

Functions