Projet

Général

Profil

Paste
Télécharger (513 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / date / date_all_day / tests / date_all_day_test_feature / date_all_day_test_feature.features.inc @ 599a39cd

1
<?php
2

    
3
/**
4
 * @file
5
 * date_all_day_test_feature.features.inc
6
 */
7

    
8
/**
9
 * Implements hook_node_info().
10
 */
11
function date_all_day_test_feature_node_info() {
12
  $items = array(
13
    'date_all_day_test' => array(
14
      'name' => t('Date Test'),
15
      'base' => 'node_content',
16
      'description' => t('This content type is used for testing the Date All Day module.'),
17
      'has_title' => '1',
18
      'title_label' => t('Title'),
19
      'help' => '',
20
    ),
21
  );
22
  drupal_alter('node_info', $items);
23
  return $items;
24
}