function imageblock_add_block_form in Image Block 6
Same name and namespace in other branches
- 7 imageblock.admin.inc \imageblock_add_block_form()
Menu callback: display the custom image block addition form.
2 string references to 'imageblock_add_block_form'
- imageblock_form_alter in ./
imageblock.module - Implements hook_form_alter().
- imageblock_menu in ./
imageblock.module - Implements hook_menu().
File
- ./
imageblock.module, line 114 - imageblock.module Primarily Drupal hooks.
Code
function imageblock_add_block_form() {
module_load_include('inc', 'block', 'block.admin');
return block_admin_configure($form_state, 'imageblock', NULL);
}