first commit
This commit is contained in:
34
catalog/controller/cron/gdpr.php
Normal file
34
catalog/controller/cron/gdpr.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?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']);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user