Skip to content

Instantly share code, notes, and snippets.

@kicybot
Last active June 7, 2018 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kicybot/d78d4974c8f7fefad45f9d68047d6675 to your computer and use it in GitHub Desktop.
Save kicybot/d78d4974c8f7fefad45f9d68047d6675 to your computer and use it in GitHub Desktop.
Cookiebot Drupal 7 template.php
<?php
function theme_preprocess_html(&$variables)
{
$cookiebot = array(
'#type' => 'markup',
'#markup' => '<script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="00000000-0000-0000-0000-000000000000" type="text/javascript" async></script>' . "\n"
);
drupal_add_html_head($cookiebot, 'cookiebot_banner');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment