dcLatestVersions/_install.php

53 lines
1.1 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
*
2022-12-20 21:21:48 +00:00
* @copyright Jean-Christian Denis
2022-11-20 17:33:02 +00:00
* @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 --
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
2022-12-10 14:17:38 +00:00
if (!dcCore::app()->newVersion(
2022-12-20 21:21:48 +00:00
basename(__DIR__),
2022-12-10 14:17:38 +00:00
dcCore::app()->plugins->moduleInfo(basename(__DIR__), 'version')
2022-11-16 22:03:38 +00:00
)) {
return null;
}
# Set module settings
2022-12-10 14:17:38 +00:00
dcCore::app()->blog->settings->addNamespace(basename(__DIR__));
2022-11-16 22:03:38 +00:00
foreach ($mod_conf as $v) {
2022-12-10 14:17:38 +00:00
dcCore::app()->blog->settings->__get(basename(__DIR__))->put(
2022-11-16 22:03:38 +00:00
$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
}