pacKman/_install.php

107 lines
2.2 KiB
PHP
Raw Normal View History

2021-08-16 20:48:26 +00:00
<?php
2021-09-02 20:14:32 +00:00
/**
* @brief pacKman, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-08-16 20:48:26 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
2021-08-17 21:12:33 +00:00
return null;
2021-08-16 20:48:26 +00:00
}
# -- Module specs --
2021-08-23 13:07:29 +00:00
$dc_min = '2.18';
2021-08-16 20:48:26 +00:00
$mod_id = 'pacKman';
2021-08-23 13:07:29 +00:00
$mod_conf = [
[
2021-08-17 21:12:33 +00:00
'packman_menu_plugins',
'Add link to pacKman in plugins page',
false,
'boolean'
2021-08-23 13:07:29 +00:00
],
[
2021-08-17 21:12:33 +00:00
'packman_pack_nocomment',
'Remove comments from files',
false,
'boolean'
2021-08-23 13:07:29 +00:00
],
[
2021-08-17 21:12:33 +00:00
'packman_pack_overwrite',
'Overwrite existing package',
false,
'boolean'
2021-08-23 13:07:29 +00:00
],
[
2021-08-17 21:12:33 +00:00
'packman_pack_filename',
'Name of package',
'%type%-%id%',
'string'
2021-08-23 13:07:29 +00:00
],
[
2021-08-17 21:12:33 +00:00
'packman_secondpack_filename',
'Name of second package',
'%type%-%id%-%version%',
'string'
2021-08-23 13:07:29 +00:00
],
[
2021-08-17 21:12:33 +00:00
'packman_pack_repository',
'Path to package repository',
'',
'string'
2021-08-23 13:07:29 +00:00
],
[
2021-08-17 21:12:33 +00:00
'packman_pack_excludefiles',
'Extra files to exclude from package',
'*.zip,*.tar,*.tar.gz,.directory,.hg',
'string'
2021-08-23 13:07:29 +00:00
]
];
2021-08-16 20:48:26 +00:00
# -- Nothing to change below --
try {
2021-08-17 21:12:33 +00:00
# Check module version
if (version_compare(
$core->getVersion($mod_id),
$core->plugins->moduleInfo($mod_id, 'version'),
2021-08-23 13:07:29 +00:00
'>=')) {
2021-08-17 21:12:33 +00:00
return null;
}
2021-08-16 20:48:26 +00:00
2021-08-17 21:12:33 +00:00
# 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
));
}
2021-08-16 20:48:26 +00:00
2021-08-17 21:12:33 +00:00
# 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
);
}
2021-08-16 20:48:26 +00:00
2021-08-17 21:12:33 +00:00
# Set module version
$core->setVersion(
$mod_id,
$core->plugins->moduleInfo($mod_id, 'version')
);
2021-08-16 20:48:26 +00:00
2021-08-17 21:12:33 +00:00
return true;
2021-08-16 20:48:26 +00:00
}
catch (Exception $e) {
2021-08-17 21:12:33 +00:00
$core->error->add($e->getMessage());
2021-08-16 20:48:26 +00:00
2021-08-17 21:12:33 +00:00
return false;
}