function node_form_block_custom_block_delete_alter
Implements hook_form_FORMID_alter().
Adds node specific submit handler to delete custom block form.
See also
Archivo
- drupal-7.x/
modules/ node/ node.module, line 2483 - The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.
Código
function node_form_block_custom_block_delete_alter(&$form, &$form_state) {
$form['#submit'][] = 'node_form_block_custom_block_delete_submit';
}