You are here

function afb_admin_page in Advanced Form Block 7

Returns the page containing existing block list with block creation form.

1 string reference to 'afb_admin_page'
afb_menu in ./afb.module
Implements hook_menu().

File

./afb.module, line 182
Allows administrators to create blockd of node add/edit forms.

Code

function afb_admin_page() {
  $output = array(
    'existing_blocks' => drupal_get_form('afb_existing_blocks_display_form'),
    'create_new_block' => drupal_get_form('afb_new_block_create_form'),
  );
  return $output;
}