You are here

gdpr_consent.pages.inc in GDPR Consent 7

Page output.

File

gdpr_consent.pages.inc
View source
<?php

/**
 * @file
 * Page output.
 */

/**
 * Page callback.
 */
function gdpr_consent_page() {
  $form = drupal_get_form('gdpr_consent_accept_form');
  $output = drupal_render($form);

  // Return page output.
  return $output;
}

Functions

Namesort descending Description
gdpr_consent_page Page callback.