whiteListCom/_install.php

21 lines
440 B
PHP
Raw Normal View History

2023-01-07 23:37:15 +00:00
<?php
/**
* @brief whiteListCom, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
2023-01-07 23:42:34 +00:00
* @author Jean-Christian Denis and Contributors
2023-01-07 23:37:15 +00:00
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
declare(strict_types=1);
$install = implode('\\', ['Dotclear', 'Plugin', basename(__DIR__), 'Install']);
if ($install::init()) {
return $install::process();
}
return null;