You are here

commons_blog.features.inc in Drupal Commons 6.2

File

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

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

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

Functions