You are here

function schemaorg_event_node_info in Schema.org 7

Implements hook_node_info().

File

example/schemaorg_event/schemaorg_event.features.inc, line 30
schemaorg_event.features.inc

Code

function schemaorg_event_node_info() {
  $items = array(
    'schemaorg_event' => array(
      'name' => t('Event'),
      'base' => 'node_content',
      'description' => '',
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  return $items;
}