Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / eu_cookie_compliance / templates / eu_cookie_compliance_withdraw.html.twig
diff --git a/web/modules/contrib/eu_cookie_compliance/templates/eu_cookie_compliance_withdraw.html.twig b/web/modules/contrib/eu_cookie_compliance/templates/eu_cookie_compliance_withdraw.html.twig
new file mode 100755 (executable)
index 0000000..1b63b23
--- /dev/null
@@ -0,0 +1,28 @@
+{#
+/**
+ * @file
+ * This is a template file for the cookie consent withdraw button.
+ *
+ * When overriding this template it is important to note that jQuery will use
+ * the following classes to assign actions to the button:
+ *
+ * eu-cookie-withdraw-button - withdraw button
+ * eu-cookie-withdraw-tab - tab that reveals the withdraw interface
+ *
+ * Variables available:
+ * - message: Contains the text that will be displayed within the banner.
+ * - withdraw_tab_button_label: Label for the tab that sits at the window edge.
+ * - withdraw_action_button_label: Label for the withdraw button.
+ */
+#}
+<button type="button" class="eu-cookie-withdraw-tab">{{ withdraw_tab_button_label }}</button>
+<div class="eu-cookie-withdraw-banner">
+  <div class="popup-content info eu-cookie-compliance-content">
+    <div id="popup-text" class="eu-cookie-compliance-message">
+      {{ message }}
+    </div>
+    <div id="popup-buttons" class="eu-cookie-compliance-buttons">
+      <button type="button" class="eu-cookie-withdraw-button">{{ withdraw_action_button_label }}</button>
+    </div>
+  </div>
+</div>