<?php
/**
 * @file
 * diy_series.features.inc
 */

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

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

/**
 * Implements hook_node_info().
 */
function diy_series_node_info() {
  $items = array(
    'series' => array(
      'name' => t('Series'),
      'base' => 'node_content',
      'description' => '',
      'has_title' => '1',
      'title_label' => t('Titel'),
      'help' => '',
    ),
  );
  return $items;
}
