PluginProbe
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 3.11.3
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v3.11.3
4.7.3 4.7.2 4.7.1 trunk 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 3.0.0 3.0.1 3.1.0 3.10.0 3.10.1 3.11.1 3.11.2 3.11.3 3.2.0 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 All 93 releases
cookiebot / js / block.js

block.js in Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode 3.11.3, at js/block.js

22 lines 538 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 ( function( blocks, element ) {
2 var el = element.createElement,
3 registerBlockType = blocks.registerBlockType;
4
5 registerBlockType( 'cookiebot/cookie-declaration', {
6 title: 'Cookie Declaration',
7 keywords: ['cookiebot'],
8 icon: 'media-spreadsheet',
9 category: 'widgets',
10 edit: function(props) {
11 return el(
12 'i',
13 {},
14 'Cookiebot Cookie Declaration'
15 );
16 },
17 } );
18 }(
19 window.wp.blocks,
20 window.wp.element,
21 ) );
22