You are here

function cookieconsent_theme in CookieConsent 8

Implements hook_theme().

File

./cookieconsent.module, line 30
Contains cookieconsent.module.

Code

function cookieconsent_theme($existing, $type, $theme, $path) {
  return [
    'cookieconsent' => [
      'variables' => [
        'dismiss' => '',
        'message' => '',
        'target' => '',
        'link' => '',
        'learn_more' => '',
      ],
    ],
  ];
}