fac/_install.php

110 lines
2.9 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 --
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
2022-12-10 14:22:37 +00:00
if (!dcCore::app()->newVersion(
basename(__DIR__),
dcCore::app()->plugins->moduleInfo(basename(__DIR__), 'version')
2022-11-20 20:13:56 +00:00
)) {
2021-08-20 16:39:12 +00:00
return null;
}
# Set module settings
2022-12-10 14:22:37 +00:00
dcCore::app()->blog->settings->addNamespace(basename(__DIR__));
2022-11-20 20:13:56 +00:00
foreach ($mod_conf as $v) {
2022-12-10 14:22:37 +00:00
dcCore::app()->blog->settings->__get(basename(__DIR__))->put(
2022-11-20 20:13:56 +00:00
$v[0],
$v[2],
$v[3],
$v[1],
false,
true
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
}