Tasks
Introduction
How to Create a task
Example
<?php
namespace Opencart\Catalog\Controller\Extension\TestModule;
class Task extends \Opencart\System\Engine\Controller {
public function index(): void {
// Process your customizations here
$this->log->write('My task has successfully started!');
}
}Last updated