34 lines
909 B
PHP
34 lines
909 B
PHP
<?php
|
|
namespace Opencart\Catalog\Controller\Cron;
|
|
/**
|
|
* Class Gdpr
|
|
*
|
|
* @package Opencart\Catalog\Controller\Cron
|
|
*/
|
|
class Gdpr extends \Opencart\System\Engine\Controller {
|
|
/**
|
|
* @param int $cron_id
|
|
* @param string $code
|
|
* @param string $cycle
|
|
* @param string $date_added
|
|
* @param string $date_modified
|
|
*
|
|
* @return void
|
|
*/
|
|
public function index(int $cron_id, string $code, string $cycle, string $date_added, string $date_modified): void {
|
|
$this->load->model('account/gdpr');
|
|
$this->load->model('account/customer');
|
|
|
|
$results = $this->model_account_gdpr->getExpires();
|
|
|
|
foreach ($results as $result) {
|
|
$this->model_account_gdpr->editStatus($result['gdpr_id'], 3);
|
|
|
|
$customer_info = $this->model_account_customer->getCustomerByEmail($result['email']);
|
|
|
|
if ($customer_info) {
|
|
$this->model_account_customer->deleteCustomer($customer_info['customer_id']);
|
|
}
|
|
}
|
|
}
|
|
} |