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

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

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