2015-04-22 15:07:20 +00:00
|
|
|
<?php
|
|
|
|
# -- BEGIN LICENSE BLOCK ----------------------------------
|
|
|
|
#
|
|
|
|
# This file is part of dcLatestVersions, a plugin for Dotclear 2.
|
|
|
|
#
|
2021-08-27 15:53:07 +00:00
|
|
|
# Copyright (c) 2009-2021 Jean-Christian Denis and contributors
|
2015-04-22 15:07:20 +00:00
|
|
|
#
|
|
|
|
# Licensed under the GPL version 2.0 license.
|
|
|
|
# A copy of this license is available in LICENSE file or at
|
|
|
|
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
#
|
|
|
|
# -- END LICENSE BLOCK ------------------------------------
|
|
|
|
|
|
|
|
if (!defined('DC_CONTEXT_ADMIN')) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
# -- Module specs --
|
2021-08-27 15:53:07 +00:00
|
|
|
$dc_min = '2.19';
|
2015-04-22 15:07:20 +00:00
|
|
|
$mod_id = 'dcLatestVersions';
|
2021-08-27 15:53:07 +00:00
|
|
|
$mod_conf = [[
|
|
|
|
'builds',
|
|
|
|
"List of Dotclear's builds",
|
|
|
|
'stable,unstable,testing,sexy',
|
|
|
|
'string'
|
|
|
|
]];
|
2015-04-22 15:07:20 +00:00
|
|
|
|
|
|
|
# -- Nothing to change below --
|
|
|
|
try {
|
|
|
|
# Check module version
|
|
|
|
if (version_compare(
|
|
|
|
$core->getVersion($mod_id),
|
|
|
|
$core->plugins->moduleInfo($mod_id, 'version'),
|
2021-08-27 15:53:07 +00:00
|
|
|
'>=')) {
|
2015-04-22 15:07:20 +00:00
|
|
|
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
|
|
|
|
$core->blog->settings->addNamespace($mod_id);
|
|
|
|
foreach($mod_conf as $v) {
|
|
|
|
$core->blog->settings->{$mod_id}->put(
|
|
|
|
$v[0], $v[2], $v[3], $v[1], false, true
|
|
|
|
);
|
|
|
|
}
|
|
|
|
# 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;
|
|
|
|
}
|