2021-08-20 19:07:26 +00:00
|
|
|
<?php
|
2021-09-02 20:43:05 +00:00
|
|
|
/**
|
|
|
|
* @brief postExpired, 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
|
|
|
|
*/
|
2021-08-20 19:07:26 +00:00
|
|
|
|
|
|
|
if (!defined('DC_CONTEXT_ADMIN')) {
|
2021-08-20 19:36:46 +00:00
|
|
|
return null;
|
2021-08-20 19:07:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# -- Module specs --
|
2021-08-20 19:36:46 +00:00
|
|
|
$dc_min = '2.18';
|
2021-08-20 19:07:26 +00:00
|
|
|
$mod_id = 'postExpired';
|
|
|
|
|
|
|
|
# -- Nothing to change below --
|
|
|
|
try {
|
2021-08-20 19:36:46 +00:00
|
|
|
# Check module version
|
|
|
|
if (version_compare(
|
|
|
|
$core->getVersion($mod_id),
|
|
|
|
$core->plugins->moduleInfo($mod_id, 'version'),
|
|
|
|
'>='
|
|
|
|
)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Check Dotclear version
|
|
|
|
if (!method_exists('dcUtils', 'versionsCompare')
|
|
|
|
|| dcUtils::versionsCompare(DC_VERSION, $dc_min, '<', false)) {
|
|
|
|
throw new Exception(sprintf(
|
|
|
|
'%s requires Dotclear %s', $mod_id, $dc_min
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
# Set module version
|
|
|
|
$core->setVersion(
|
|
|
|
$mod_id,
|
|
|
|
$core->plugins->moduleInfo($mod_id, 'version')
|
|
|
|
);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$core->error->add($e->getMessage());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|