<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<h4 class="no-mtop mbot15">
<?= _l('gdpr_right_to_erasure'); ?>
<small>
<a href="https://ico.org.uk/for-organisations/guide-to-the-general-data-protection-regulation-gdpr/individual-rights/right-to-erasure/"
target="_blank"><?= _l('learn_more'); ?></a>
</small>
</h4>
<ul class="nav nav-tabs tabs-in-body-no-margin" role="tablist">
<li role="presentation" class="active">
<a href="#forgotten_options" aria-controls="forgotten_options" role="tab" data-toggle="tab">
Config
</a>
</li>
<li role="presentation">
<a href="#removal_requests" aria-controls="removal_requests" role="tab" data-toggle="tab">
Removal Requests
<?php if ($not_pending_requests > 0) { ?>
<span
class="badge"><?= e($not_pending_requests); ?></span>
<?php } ?>
</a>
</li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="forgotten_options">
<h4 class="no-mtop">Contacts</h4>
<hr class="hr-panel-separator">
<?php render_yes_no_option('gdpr_contact_enable_right_to_be_forgotten', 'Enable contact to request data removal'); ?>
<hr />
<?php render_yes_no_option('gdpr_on_forgotten_remove_invoices_credit_notes', 'When deleting customer, delete also <b>invoices</b> and <b>credit notes</b> related to this customer.'); ?>
<hr />
<?php render_yes_no_option('gdpr_on_forgotten_remove_estimates', 'When deleting customer, delete also estimates related to this customer.'); ?>
<hr class="hr-panel-separator">
<h4>Leads</h4>
<hr class="hr-panel-separator">
<?php render_yes_no_option('gdpr_lead_enable_right_to_be_forgotten', 'Enable lead to request data removal (via public form)'); ?>
<hr />
<?php render_yes_no_option('gdpr_after_lead_converted_delete', 'After lead is converted to customer, delete all lead data'); ?>
<hr />
</div>
<div role="tabpanel" class="tab-pane" id="removal_requests">
<table class="table dt-table" data-order-type="desc" data-order-col="4">
<thead>
<tr>
<th>Request ID</th>
<th>Request From</th>
<th>Description</th>
<th>Request Status</th>
<th>Request Date</th>
</tr>
</thead>
<tbody>
<?php
foreach ($requests as $request) { ?>
<tr>
<td
data-order="<?= e($request['id']); ?>">
<?= e($request['id']); ?>
</td>
<td><?= e($request['request_from']); ?>
<?php if (! empty($request['contact_id'])) {
echo '<span class="label label-info pull-right">Contact</span>';
} elseif (! empty($request['lead_id'])) {
echo '<span class="label label-info pull-right">Lead</span>';
}
?>
</td>
<td><?= e($request['description']); ?>
</td>
<td
data-order="<?= e($request['status']); ?>">
<select class="selectpicker removalStatus" name="status"
data-id="<?= e($request['id']); ?>"
width="100%">
<option value="pending" <?php if ($request['status'] == 'pending') {
echo ' selected';
} ?>>Pending</option>
<option value="removed" <?php if ($request['status'] == 'removed') {
echo ' selected';
} ?>>Removed</option>
<option value="refused" <?php if ($request['status'] == 'refused') {
echo ' selected';
} ?>>Refused</option>
</select>
</td>
<td
data-order="<?= e($request['request_date']); ?>">
<?= e(_dt($request['request_date'])); ?>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>