Viewing file: 5dc02bf6d9000dacd7f0b52f11fc3317.php (7.52 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php if($cookies?$cookies->allow_cookies:false): ?> <link rel="stylesheet" href="<?php echo e(asset('frontend\plugins\cookieconsent\cookieconsent.css')); ?>" media="print" onload="this.media='all'"> <style> #cm.cloud .c-bn:first-child { margin: 0; background-color: <?php echo e($setting->frontend_primary_color); ?> !important; } </style> <script async src="<?php echo e(asset('frontend/plugins/cookieconsent/cookieconsent.js')); ?>"></script> <script> window.addEventListener('load', function() { <?php if($cookies->darkmode): ?> document.body.classList.toggle('c_darkmode'); <?php endif; ?> // obtain plugin var cc = initCookieConsent();
// run plugin with your configuration cc.run({ current_lang: '<?php echo e($cookies->language); ?>', autoclear_cookies: true, // default: false page_scripts: true, // default: false force_consent: <?php echo e($cookies->force_consent ? 'true' : 'false'); ?>, // default: false cookie_name: '<?php echo e($cookies->cookie_name); ?>', // default: 'cc_cookie' cookie_expiration: <?php echo e($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: "<?php echo e(__('cookie_title')); ?>", description: "<?php echo e(__('cookie_description')); ?>", primary_btn: { text: "<?php echo e(__('cookie_approve_button_text')); ?>", role: 'accept_all' }, secondary_btn: { text: "<?php echo e(__('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> <?php endif; ?> <?php /**PATH /home/picotech/domains/classify.picotech.app/public_html/resources/views/components/frontend/cookies-allowance.blade.php ENDPATH**/ ?>
|