function hook_entityform_draft_page_alter in Entityform 7.2
Alter render array for Draft page.
Parameters
array $render_array:
string $entityform_type:
array $args: Extra arguments to the function entityform_draft_page() function.
1 invocation of hook_entityform_draft_page_alter()
- entityform_draft_page in ./
entityform.module - Page callback form Draft submission
File
- ./
entityform.api.php, line 83 - Hooks provided by the Entityform module.
Code
function hook_entityform_draft_page_alter(array &$render_array, $entityform_type, $args) {
$render_array['new_markup'] = array(
'#markup' => t('Hello World - draft!'),
'#type' => 'markup',
);
}