You are here

function commons_event_node_info in Drupal Commons 6.2

Implementation of hook_node_info().

File

modules/features/commons_event/commons_event.features.inc, line 19

Code

function commons_event_node_info() {
  $items = array(
    'event' => array(
      'name' => t('Event'),
      'module' => 'features',
      'description' => t('An item that is used to provide details about an event. Events can be connected to multiple groups.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'has_body' => '1',
      'body_label' => t('Description'),
      'min_word_count' => '0',
      'help' => '',
    ),
  );
  return $items;
}