dcLatestVersions/_install.php

65 lines
1.4 KiB
PHP
Raw Normal View History

2015-04-22 15:07:20 +00:00
<?php
2022-11-20 17:33:02 +00:00
/**
* @brief dcLatestVersions, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis, Pierre Van Glabeke
*
* @copyright Jean-Crhistian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2015-04-22 15:07:20 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
2022-11-16 22:03:38 +00:00
return null;
2015-04-22 15:07:20 +00:00
}
# -- Module specs --
2022-11-16 22:03:38 +00:00
$dc_min = '2.24';
$mod_id = 'dcLatestVersions';
2021-08-27 15:53:07 +00:00
$mod_conf = [[
2022-11-16 22:03:38 +00:00
'builds',
"List of Dotclear's builds",
'stable,unstable,testing,sexy',
'string',
2021-08-27 15:53:07 +00:00
]];
2015-04-22 15:07:20 +00:00
# -- Nothing to change below --
try {
2022-11-16 22:03:38 +00:00
# Check module version
if (version_compare(
dcCore::app()->getVersion($mod_id),
dcCore::app()->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 settings
dcCore::app()->blog->settings->addNamespace($mod_id);
foreach ($mod_conf as $v) {
dcCore::app()->blog->settings->{$mod_id}->put(
$v[0],
$v[2],
$v[3],
$v[1],
false,
true
);
}
return true;
} catch (Exception $e) {
dcCore::app()->error->add($e->getMessage());
return false;
2015-04-22 15:07:20 +00:00
}