Viewing file: cookies-allowance.blade.php (7.22 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@if ($cookies?$cookies->allow_cookies:false) <link rel="stylesheet" href="{{ asset('frontend\plugins\cookieconsent\cookieconsent.css') }}" media="print" onload="this.media='all'"> <style> #cm.cloud .c-bn:first-child { margin: 0; background-color: {{ $setting->frontend_primary_color }} !important; } </style> <script async src="{{ asset('frontend/plugins/cookieconsent/cookieconsent.js') }}"></script> <script> window.addEventListener('load', function() { @if ($cookies->darkmode) document.body.classList.toggle('c_darkmode'); @endif // obtain plugin var cc = initCookieConsent();
// run plugin with your configuration cc.run({ current_lang: '{{ $cookies->language }}', autoclear_cookies: true, // default: false page_scripts: true, // default: false force_consent: {{ $cookies->force_consent ? 'true' : 'false' }}, // default: false cookie_name: '{{ $cookies->cookie_name }}', // default: 'cc_cookie' cookie_expiration: {{ $cookies->cookie_expiration }}, // default: 182 (days) autorun: true, // default: true
onFirstAction: function(user_preferences, cookie) { // callback triggered only once on the first accept/reject action },
onAccept: function(cookie) { // callback triggered on the first accept/reject action, and after each page load },
onChange: function(cookie, changed_categories) { // callback triggered when user changes preferences after consent has already been given },
gui_options: { consent_modal: { layout: 'cloud', // box/cloud/bar position: 'bottom right', // bottom/middle/top + left/right/center transition: 'slide', // zoom/slide swap_buttons: false // enable to invert buttons }, settings_modal: { layout: 'box', // box/bar position: 'left', // left/right transition: 'slide' // zoom/slide } },
languages: { 'en': { consent_modal: { title: "{{ __('cookie_title') }}", description: "{{ __('cookie_description') }}", primary_btn: { text: "{{ __('cookie_approve_button_text') }}", role: 'accept_all' }, secondary_btn: { text: "{{ __('cookie_decline_button_text') }}", role: 'accept_necessary' } }, settings_modal: { title: 'Cookie preferences', save_settings_btn: 'Save settings', accept_all_btn: 'Accept all', reject_all_btn: 'Reject all', close_btn_label: 'Close', cookie_table_headers: [{ col1: 'Name' }, { col2: 'Domain' }, { col3: 'Expiration' }, { col4: 'Description' } ], blocks: [{ title: 'Cookie usage 📢', description: 'I use cookies to ensure the basic functionalities of the website and to enhance your online experience. You can choose for each category to opt-in/out whenever you want. For more details relative to cookies and other sensitive data, please read the full <a href="#" class="cc-link">privacy policy</a>.' }, { title: 'Strictly necessary cookies', description: 'These cookies are essential for the proper functioning of my website. Without these cookies, the website would not work properly', toggle: { value: 'necessary', enabled: true, readonly: true // cookie categories with readonly=true are all treated as "necessary cookies" } }, { title: 'Performance and Analytics cookies', description: 'These cookies allow the website to remember the choices you have made in the past', toggle: { value: 'analytics', // your cookie category enabled: false, readonly: false }, cookie_table: [ // list of all expected cookies { col1: '^_ga', // match all cookies starting with "_ga" col2: 'google.com', col3: '2 years', col4: 'description ...', is_regex: true }, { col1: '_gid', col2: 'google.com', col3: '1 day', col4: 'description ...', } ] }, { title: 'Advertisement and Targeting cookies', description: 'These cookies collect information about how you use the website, which pages you visited and which links you clicked on. All of the data is anonymized and cannot be used to identify you', toggle: { value: 'targeting', enabled: false, readonly: false } }, { title: 'More information', description: 'For any queries in relation to our policy on cookies and your choices, please <a class="cc-link" href="#yourcontactpage">contact us</a>.', }] } } } }); }); </script> @endif
|