fac/_install.php

127 lines
3.3 KiB
PHP
Raw Normal View History

2021-08-20 15:44:19 +00:00
<?php
2021-09-02 19:08:55 +00:00
/**
* @brief fac, a plugin for Dotclear 2
2022-11-20 20:13:56 +00:00
*
2021-09-02 19:08:55 +00:00
* @package Dotclear
* @subpackage Plugin
2022-11-20 20:13:56 +00:00
*
2021-09-02 19:08:55 +00:00
* @author Jean-Christian Denis and Contributors
2022-11-20 20:13:56 +00:00
*
2021-09-02 19:08:55 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-08-20 15:44:19 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
2021-08-20 16:39:12 +00:00
return null;
2021-08-20 15:44:19 +00:00
}
# -- Module specs --
2022-11-20 20:13:56 +00:00
$dc_min = '2.24';
$mod_id = 'fac';
2021-08-23 20:47:08 +00:00
$mod_conf = [
[
2021-08-20 16:39:12 +00:00
'fac_active',
'Enabled fac plugin',
false,
2022-11-20 20:13:56 +00:00
'boolean',
2021-08-23 20:47:08 +00:00
],
[
2021-08-20 16:39:12 +00:00
'fac_public_tpltypes',
'List of templates types which used fac',
2021-08-23 20:47:08 +00:00
serialize(['post', 'tag', 'archive']),
2022-11-20 20:13:56 +00:00
'string',
2021-08-23 20:47:08 +00:00
],
[
2021-08-20 16:39:12 +00:00
'fac_formats',
'Formats of feeds contents',
2021-08-23 20:47:08 +00:00
serialize([
uniqid() => [
2022-11-20 20:13:56 +00:00
'name' => 'default',
'dateformat' => '',
'lineslimit' => '5',
'linestitletext' => '%T',
'linestitleover' => '%D',
'linestitlelength' => '150',
'showlinesdescription' => '0',
'linesdescriptionlength' => '350',
'linesdescriptionnohtml' => '1',
'showlinescontent' => '0',
'linescontentlength' => '350',
'linescontentnohtml' => '1',
2021-08-23 20:47:08 +00:00
],
uniqid() => [
2022-11-20 20:13:56 +00:00
'name' => 'full',
'dateformat' => '',
'lineslimit' => '20',
'linestitletext' => '%T',
'linestitleover' => '%D - %E',
'linestitlelength' => '',
'showlinesdescription' => '1',
'linesdescriptionlength' => '',
'linesdescriptionnohtml' => '1',
'showlinescontent' => '1',
'linescontentlength' => '',
'linescontentnohtml' => '1',
],
2021-08-23 20:47:08 +00:00
]),
'string',
false,
2022-11-20 20:13:56 +00:00
true,
2021-08-23 20:47:08 +00:00
],
[
2021-08-20 16:39:12 +00:00
'fac_defaultfeedtitle',
'Default title of feed',
'%T',
2022-11-20 20:13:56 +00:00
'string',
2021-08-23 20:47:08 +00:00
],
[
2021-08-20 16:39:12 +00:00
'fac_showfeeddesc',
'Show description of feed',
1,
2022-11-20 20:13:56 +00:00
'boolean',
],
2021-08-23 20:47:08 +00:00
];
2021-08-20 15:44:19 +00:00
# -- Nothing to change below --
try {
2021-08-20 16:39:12 +00:00
# Check module version
if (version_compare(
2022-11-20 20:13:56 +00:00
dcCore::app()->getVersion($mod_id),
dcCore::app()->plugins->moduleInfo($mod_id, 'version'),
'>='
)) {
2021-08-20 16:39:12 +00:00
return null;
}
# Check Dotclear version
2022-11-20 20:13:56 +00:00
if (!method_exists('dcUtils', 'versionsCompare')
2021-08-20 16:39:12 +00:00
|| dcUtils::versionsCompare(DC_VERSION, $dc_min, '<', false)) {
throw new Exception(sprintf(
2022-11-20 20:13:56 +00:00
'%s requires Dotclear %s',
$mod_id,
$dc_min
2021-08-20 16:39:12 +00:00
));
}
# Set module settings
2022-11-20 20:13:56 +00:00
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
2021-08-20 16:39:12 +00:00
);
}
# Set module version
2022-11-20 20:13:56 +00:00
dcCore::app()->setVersion(
2021-08-20 16:39:12 +00:00
$mod_id,
2022-11-20 20:13:56 +00:00
dcCore::app()->plugins->moduleInfo($mod_id, 'version')
2021-08-20 16:39:12 +00:00
);
2022-11-20 20:13:56 +00:00
2021-08-20 16:39:12 +00:00
return true;
2021-08-23 20:47:08 +00:00
} catch (Exception $e) {
2022-11-20 20:13:56 +00:00
dcCore::app()->error->add($e->getMessage());
2021-08-20 16:39:12 +00:00
return false;
2022-11-20 20:13:56 +00:00
}