Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / fixtures / drupal7 / modules / behat_test / behat_test.features.inc
1 <?php
2 /**
3  * @file
4  * behat_test.features.inc
5  */
6
7 /**
8  * Implements hook_node_info().
9  */
10 function behat_test_node_info() {
11   $items = array(
12     'post' => array(
13       'name' => t('Post'),
14       'base' => 'node_content',
15       'description' => t('Post content type.'),
16       'has_title' => '1',
17       'title_label' => t('Title'),
18       'help' => '',
19     ),
20   );
21   drupal_alter('node_info', $items);
22   return $items;
23 }