You are here

function cumulus_add_block_form in Cumulus 7

Menu callback: display the cumulus block addition form.

See also

cumulus_add_block_form_submit()

1 string reference to 'cumulus_add_block_form'
_cumulus_menu in ./cumulus.admin.inc
Implements hook_menu().

File

./cumulus.admin.inc, line 40

Code

function cumulus_add_block_form($form, &$form_state) {
  module_load_include('inc', 'block', 'block.admin');
  return block_admin_configure($form, $form_state, 'cumulus', NULL);
}