improve/_prepend.php
2022-12-21 15:51:43 +01:00

21 lines
540 B
PHP

<?php
/**
* @brief improve, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
declare(strict_types=1);
if (!class_exists('Dotclear\Plugin\improve\Prepend')) {
require __DIR__ . DIRECTORY_SEPARATOR . 'inc' . DIRECTORY_SEPARATOR . 'Prepend.php';
if (Dotclear\Plugin\improve\Prepend::init()) {
Dotclear\Plugin\improve\Prepend::process();
}
}