- Implemented the main module class with essential properties and methods. - Added translation support for various user interface strings. - Created XML configuration file for module versioning. - Ensured compatibility with different PHP versions and PrestaShop versions.
10 lines
237 B
PHP
10 lines
237 B
PHP
<?php
|
|
include 'vendor/autoload.php';
|
|
//include 'src/ExecWithFallback.php';
|
|
use ExecWithFallback\ExecWithFallback;
|
|
use ExecWithFallback\Tests\ExecWithFallbackTest;
|
|
|
|
ExecWithFallback::exec('echo hello');
|
|
|
|
ExecWithFallbackTest::testExec();
|