Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / block_info.twig
1 /**
2  * Implements hook_block_info().
3  */
4 function {{ machine_name }}_block_info() {
5   // This example comes from node.module.
6   $blocks['syndicate'] = array(
7     'info' => t('Syndicate'),
8     'cache' => DRUPAL_NO_CACHE
9   );
10
11   $blocks['recent'] = array(
12     'info' => t('Recent content'),
13     // DRUPAL_CACHE_PER_ROLE will be assumed.
14   );
15
16   return $blocks;
17 }