129 lines
3.4 KiB
PHP
129 lines
3.4 KiB
PHP
<?php
|
|
/**
|
|
* @brief fac, a plugin for Dotclear 2
|
|
*
|
|
* @package Dotclear
|
|
* @subpackage Plugin
|
|
*
|
|
* @author Jean-Christian Denis and Contributors
|
|
*
|
|
* @copyright Jean-Christian Denis
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
*/
|
|
if (!defined('DC_CONTEXT_ADMIN')) {
|
|
return null;
|
|
}
|
|
|
|
# -- Module specs --
|
|
$mod_conf = [
|
|
[
|
|
'fac_active',
|
|
'Enabled fac plugin',
|
|
false,
|
|
'boolean',
|
|
],
|
|
[
|
|
'fac_public_tpltypes',
|
|
'List of templates types which used fac',
|
|
serialize(['post', 'tag', 'archive']),
|
|
'string',
|
|
],
|
|
[
|
|
'fac_formats',
|
|
'Formats of feeds contents',
|
|
serialize([
|
|
uniqid() => [
|
|
'name' => 'default',
|
|
'dateformat' => '',
|
|
'lineslimit' => '5',
|
|
'linestitletext' => '%T',
|
|
'linestitleover' => '%D',
|
|
'linestitlelength' => '150',
|
|
'showlinesdescription' => '0',
|
|
'linesdescriptionlength' => '350',
|
|
'linesdescriptionnohtml' => '1',
|
|
'showlinescontent' => '0',
|
|
'linescontentlength' => '350',
|
|
'linescontentnohtml' => '1',
|
|
],
|
|
uniqid() => [
|
|
'name' => 'full',
|
|
'dateformat' => '',
|
|
'lineslimit' => '20',
|
|
'linestitletext' => '%T',
|
|
'linestitleover' => '%D - %E',
|
|
'linestitlelength' => '',
|
|
'showlinesdescription' => '1',
|
|
'linesdescriptionlength' => '',
|
|
'linesdescriptionnohtml' => '1',
|
|
'showlinescontent' => '1',
|
|
'linescontentlength' => '',
|
|
'linescontentnohtml' => '1',
|
|
],
|
|
]),
|
|
'string',
|
|
false,
|
|
true,
|
|
],
|
|
[
|
|
'fac_defaultfeedtitle',
|
|
'Default title of feed',
|
|
'%T',
|
|
'string',
|
|
],
|
|
[
|
|
'fac_showfeeddesc',
|
|
'Show description of feed',
|
|
1,
|
|
'boolean',
|
|
],
|
|
];
|
|
|
|
# -- Nothing to change below --
|
|
try {
|
|
# Grab info
|
|
$mod_id = basename(__DIR__);
|
|
$dc_min = dcCore::app()->plugins->moduleInfo($mod_id, 'requires')[0][1];
|
|
|
|
# Check module version
|
|
if (version_compare(
|
|
dcCore::app()->getVersion($mod_id),
|
|
dcCore::app()->plugins->moduleInfo($mod_id, 'version'),
|
|
'>='
|
|
)) {
|
|
return null;
|
|
}
|
|
# 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
|
|
));
|
|
}
|
|
# Set module settings
|
|
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
|
|
);
|
|
}
|
|
# Set module version
|
|
dcCore::app()->setVersion(
|
|
$mod_id,
|
|
dcCore::app()->plugins->moduleInfo($mod_id, 'version')
|
|
);
|
|
|
|
return true;
|
|
} catch (Exception $e) {
|
|
dcCore::app()->error->add($e->getMessage());
|
|
|
|
return false;
|
|
}
|