Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / node_info.twig
1 /**
2  * Implements hook_node_info().
3  */
4 function {{ machine_name }}_node_info() {
5   return array(
6     'blog' => array(
7       'name' => t('Blog entry'),
8       'base' => 'blog',
9       'description' => t('Use for multi-user blogs. Every user gets a personal blog.'),
10     )
11   );
12 }