licenseBootstrap/_install.php

117 lines
2.3 KiB
PHP
Raw Normal View History

2021-08-17 21:25:45 +00:00
<?php
2021-09-02 19:43:35 +00:00
/**
* @brief licenseBootstrap, 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-17 21:25:45 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
2021-08-17 21:46:17 +00:00
return null;
2021-08-17 21:25:45 +00:00
}
# -- Module specs --
$dc_min = '2.6';
$mod_id = 'licenseBootstrap';
$mod_conf = array(
2021-08-17 21:46:17 +00:00
array(
'overwrite',
'Overwrite existing licence',
false,
'boolean'
),
array(
'write_full',
'Add complete licence file',
true,
'boolean'
),
array(
'write_php',
'Write license into php files',
true,
'boolean'
),
array(
'write_js',
'Write license into js files',
false,
'boolean'
),
array(
'exclude_locales',
'Exclude locales from license',
true,
'boolean'
),
array(
'license_name',
'License short name',
'gpl2',
'string'
),
array(
'license_head',
'File header licence text',
licenseBootstrap::encode(
licenseBootstrap::getHead('gpl2')
),
'string'
),
array(
'behavior_packman',
'Add LicenceBootstrap to plugin pacKman',
false,
'boolean'
)
2021-08-17 21:25:45 +00:00
);
# -- Nothing to change below --
try {
2021-08-17 21:46:17 +00:00
# Check module version
if (version_compare(
$core->getVersion($mod_id),
$core->plugins->moduleInfo($mod_id, 'version'),
'>='
)) {
2021-08-17 21:25:45 +00:00
2021-08-17 21:46:17 +00:00
return null;
}
2021-08-17 21:25:45 +00:00
2021-08-17 21:46:17 +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-17 21:25:45 +00:00
2021-08-17 21:46:17 +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-17 21:25:45 +00:00
2021-08-17 21:46:17 +00:00
# Set module version
$core->setVersion(
$mod_id,
$core->plugins->moduleInfo($mod_id, 'version')
);
2021-08-17 21:25:45 +00:00
2021-08-17 21:46:17 +00:00
return true;
2021-08-17 21:25:45 +00:00
}
catch (Exception $e) {
2021-08-17 21:46:17 +00:00
$core->error->add($e->getMessage());
2021-08-17 21:25:45 +00:00
2021-08-17 21:46:17 +00:00
return false;
}