You are here

function gdpr_consent_page in GDPR Consent 7

Page callback.

1 string reference to 'gdpr_consent_page'
gdpr_consent_menu in ./gdpr_consent.module
Implements hook_menu().

File

./gdpr_consent.pages.inc, line 11
Page output.

Code

function gdpr_consent_page() {
  $form = drupal_get_form('gdpr_consent_accept_form');
  $output = drupal_render($form);

  // Return page output.
  return $output;
}