Server IP : 192.185.129.71 / Your IP : 3.133.106.74 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/views/admin/gdpr/pages/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <h4 class="no-mtop"> <?php echo _l('gdpr_consent'); ?> <small> <a href="https://ico.org.uk/for-organisations/guide-to-the-general-data-protection-regulation-gdpr/lawful-basis-for-processing/consent/" target="_blank"><?php echo _l('learn_more'); ?></a> </small> </h4> <hr class="hr-panel-separator"> <?php render_yes_no_option('gdpr_enable_consent_for_contacts', 'Enable consent for contacts'); ?> <hr /> <?php render_yes_no_option('gdpr_enable_consent_for_leads', 'Enable consent for leads'); ?> <hr /> <p class=""> Public page consent information block </p> <?php echo render_textarea('settings[gdpr_consent_public_page_top_block]', '', get_option('gdpr_consent_public_page_top_block'), [], [], '', 'tinymce'); ?> <hr class="hr-panel-separator" /> <button type="button" class="btn btn-primary btn-sm pull-left mright10" onclick="conset_purpose(); return false;" data-toggle="tooltip" title="New Consent Purpose"><i class="fa-regular fa-square-plus"></i></button> <h4 class="mbot30 mtop7 pull-left">Purposes of consent</h4> <div class="clearfix"></div> <table class="table dt-table" data-order-type="desc" data-order-col="1"> <thead> <tr> <th>Name</th> <th>Description</th> <th>Created</th> <th>Last Updated</th> <th>Options</th> </tr> </thead> <tbody> <?php foreach ($consent_purposes as $purpose) { ?> <tr> <td><?php echo $purpose['name']; ?></td> <td><?php echo $purpose['description']; ?></td> <td data-order="<?php echo $purpose['date_created']; ?>"><?php echo _dt($purpose['date_created']); ?></td> <td data-order="<?php echo $purpose['last_updated']; ?>"><?php echo _dt($purpose['last_updated']); ?></td> <td> <div class="tw-flex tw-items-center tw-space-x-3"> <a href="<?php echo $purpose['id']; ?>" onclick="conset_purpose(<?php echo $purpose['id']; ?>); return false;" class="tw-text-neutral-500 hover:tw-text-neutral-700 focus:tw-text-neutral-700"> <i class="fa-regular fa-pen-to-square fa-lg"></i> </a> <a href="<?php echo admin_url('gdpr/delete_consent_purpose/' . $purpose['id']); ?>" class="tw-mt-px tw-text-neutral-500 hover:tw-text-neutral-700 focus:tw-text-neutral-700 _delete"> <i class="fa-regular fa-trash-can fa-lg"></i> </a> </div> </td> </tr> <?php } ?> </tbody> </table> <script> function conset_purpose(id) { var url = admin_url + 'gdpr/consent_purpose'; if (typeof(id) != 'undefined') { url += '/' + id; } requestGet(url).done(function(response) { $('#page-tail').html(response); $('#consentModal').modal('show'); var $consentForm = $('#consentForm'); $consentForm.attr('action', url); appValidateForm($consentForm, { name: 'required', }); }); } </script>