You are here

function civicrm_event_og_config_sample_node_info in CiviCRM Entity 7.2

Same name and namespace in other branches
  1. 7 features/civicrm_event_og_config_sample/civicrm_event_og_config_sample.features.inc \civicrm_event_og_config_sample_node_info()

Implements hook_node_info().

File

features/civicrm_event_og_config_sample/civicrm_event_og_config_sample.features.inc, line 10
civicrm_event_og_config_sample.features.inc

Code

function civicrm_event_og_config_sample_node_info() {
  $items = array(
    'og_event' => array(
      'name' => t('CiviEvent Organic Group'),
      'base' => 'node_content',
      'description' => '',
      'has_title' => '1',
      'title_label' => t('Event Title'),
      'help' => '',
    ),
  );
  return $items;
}