delta_blocks.admin.inc 611 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @file
  4. * Admin functions for the Delta blocks module.
  5. */
  6. function delta_blocks_admin_settings($form, &$form_state) {
  7. $form['delta_blocks'] = array(
  8. '#type' => 'fieldset',
  9. '#title' => t('Delta blocks configuration'),
  10. );
  11. $form['delta_blocks']['delta_blocks_toggle'] = array(
  12. '#type' => 'checkboxes',
  13. '#title' => t('Toggle Delta blocks'),
  14. '#options' => delta_blocks_options(),
  15. '#default_value' => variable_get('delta_blocks_toggle', array()),
  16. '#description' => t('The selected items will be available as blocks.'),
  17. );
  18. return system_settings_form($form);
  19. }