You are here

function schemaorg_person_node_info in Schema.org 7

Implements hook_node_info().

File

example/schemaorg_person/schemaorg_person.features.inc, line 20
schemaorg_person.features.inc

Code

function schemaorg_person_node_info() {
  $items = array(
    'schemaorg_person' => array(
      'name' => t('Person'),
      'base' => 'node_content',
      'description' => t('A page representing a person'),
      'has_title' => '1',
      'title_label' => t('Name'),
      'help' => '',
    ),
  );
  return $items;
}