function node_form_block_add_block_form_alter
Implements hook_form_FORMID_alter().
Adds node-type specific visibility options to add block form.
See also
Archivo
- drupal-7.x/
modules/ node/ node.module, line 2421 - 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_add_block_form_alter(&$form, &$form_state) {
node_form_block_admin_configure_alter($form, $form_state);
}