Startups
Introduction
Key Components
How to Register a Startup
Example: Registering a Startup
<?php
namespace Opencart\Catalog\Controller\Extension\TestModule;
class Startup extends \Opencart\System\Engine\Controller {
public function index(): void {
// Process your customizations here
$this->log->write('My startup has been successfully initialized!');
}
}Last updated