testMail/index.php

8 lines
188 B
PHP
Raw Normal View History

2023-01-05 23:33:13 +00:00
<?php
declare(strict_types=1);
$manage = implode('\\', ['Dotclear', 'Plugin', basename(__DIR__), 'Manage']);
if ($manage::init()) {
$manage::process();
$manage::render();
}