Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / block_configure.twig
1 /**
2  * Implements hook_block_configure().
3  */
4 function {{ machine_name }}_block_configure($delta = '') {
5   // This example comes from node.module.
6   $form = array();
7   if ($delta == 'recent') {
8     $form['node_recent_block_count'] = array(
9       '#type' => 'select',
10       '#title' => t('Number of recent content items to display'),
11       '#default_value' => variable_get('node_recent_block_count', 10),
12       '#options' => drupal_map_assoc(array(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 25, 30)),
13     );
14   }
15   return $form;
16 }