20 lines
437 B
PHP
20 lines
437 B
PHP
<?php
|
|
/**
|
|
* @brief tweakStores, 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);
|
|
|
|
$config = implode('\\', ['Dotclear', 'Plugin', basename(__DIR__), 'Config']);
|
|
if ($config::init()) {
|
|
$config::process();
|
|
$config::render();
|
|
}
|