You are here

function _cumulus_block_configure in Cumulus 7

Implements hook_block_configure().

1 call to _cumulus_block_configure()
cumulus_block_configure in ./cumulus.module
Implements hook_block_configure().

File

./cumulus.admin.inc, line 172

Code

function _cumulus_block_configure($delta = '') {

  // Create a pseudo form state.
  $form_state = array(
    'values' => cumulus_get_config($delta),
  );
  return cumulus_configure_form(array(), $form_state);
}