You are here

function hook_entityform_ENTITYFORM_TYPE_confirm_page_alter in Entityform 7.2

Alter the render array for the confirm page for a single Entityform Type.

Parameters

array $render_array:

string $entityform_type:

$entityform_id:

File

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

Code

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