You are here

function hook_entityform_confirm_page_alter in Entityform 7.2

Alter the render array that will make the confirm page all entityform types.

This is the called the "Submission Page Settings" on the Entityform Type edit page.

Parameters

array $render_array:

string $entityform_type:

$entityform_id:

1 invocation of hook_entityform_confirm_page_alter()
entityform_confirm_page in ./entityform.module
Page callback

File

./entityform.api.php, line 35
Hooks provided by the Entityform module.

Code

function hook_entityform_confirm_page_alter(array &$render_array, $entityform_type, $entityform_id) {
  $render_array['new_markup'] = array(
    '#markup' => t('Hello World!'),
    '#type' => 'markup',
  );
}