You are here

function yamaps_example_feature_node_info in Yandex.Maps 7

Implements hook_node_info().

File

modules/yamaps_example_feature/yamaps_example_feature.features.inc, line 27
Exports generic Drupal hooks.

Code

function yamaps_example_feature_node_info() {
  $items = [
    'yandex_maps_example' => [
      'name' => t('Yandex Maps Page'),
      'base' => 'node_content',
      'description' => '',
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ],
  ];
  return $items;
}