2021-08-23 11:24:19 +00:00
|
|
|
<?php
|
2021-09-02 12:56:02 +00:00
|
|
|
/**
|
|
|
|
* @brief periodical, a plugin for Dotclear 2
|
2022-11-14 21:08:00 +00:00
|
|
|
*
|
2021-09-02 12:56:02 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2022-11-14 21:08:00 +00:00
|
|
|
*
|
2021-09-02 12:56:02 +00:00
|
|
|
* @author Jean-Christian Denis and contributors
|
2022-11-14 21:08:00 +00:00
|
|
|
*
|
2021-09-02 12:56:02 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-08-23 11:24:19 +00:00
|
|
|
if (!defined('DC_CONTEXT_ADMIN')) {
|
2021-08-23 22:52:29 +00:00
|
|
|
return null;
|
2021-08-23 11:24:19 +00:00
|
|
|
}
|
|
|
|
|
2022-12-03 15:30:57 +00:00
|
|
|
try {
|
|
|
|
# Grab info
|
|
|
|
$mod_id = basename(__DIR__);
|
|
|
|
$dc_min = dcCore::app()->plugins->moduleInfo($mod_id, 'requires')[0][1];
|
|
|
|
$new_version = dcCore::app()->plugins->moduleInfo($mod_id, 'version');
|
2021-08-23 11:24:19 +00:00
|
|
|
|
2022-12-03 15:30:57 +00:00
|
|
|
# Check installed version
|
|
|
|
if (version_compare(dcCore::app()->getVersion($mod_id), $new_version, '>=')) {
|
|
|
|
return null;
|
|
|
|
}
|
2021-08-23 11:24:19 +00:00
|
|
|
|
2021-08-23 22:52:29 +00:00
|
|
|
# Check Dotclear version
|
2022-11-14 21:08:00 +00:00
|
|
|
if (!method_exists('dcUtils', 'versionsCompare')
|
2021-10-24 07:33:44 +00:00
|
|
|
|| dcUtils::versionsCompare(DC_VERSION, $dc_min, '<', false)
|
|
|
|
) {
|
2021-08-23 22:52:29 +00:00
|
|
|
throw new Exception(sprintf(
|
2022-11-14 21:08:00 +00:00
|
|
|
'%s requires Dotclear %s',
|
2022-12-03 15:30:57 +00:00
|
|
|
$mod_id,
|
2022-11-14 21:08:00 +00:00
|
|
|
$dc_min
|
2021-08-23 22:52:29 +00:00
|
|
|
));
|
|
|
|
}
|
2021-08-23 11:24:19 +00:00
|
|
|
|
2021-08-23 22:52:29 +00:00
|
|
|
# Tables
|
2022-11-14 21:08:00 +00:00
|
|
|
$t = new dbStruct(dcCore::app()->con, dcCore::app()->prefix);
|
2021-08-23 11:24:19 +00:00
|
|
|
|
2021-08-23 22:52:29 +00:00
|
|
|
# Table principale des sondages
|
2022-12-03 15:30:57 +00:00
|
|
|
$t->{initPeriodical::PERIOD_TABLE_NAME}
|
2022-11-14 21:08:00 +00:00
|
|
|
->periodical_id('bigint', 0, false)
|
2021-08-23 22:52:29 +00:00
|
|
|
->blog_id('varchar', 32, false)
|
2022-11-14 21:08:00 +00:00
|
|
|
->periodical_type('varchar', 32, false, "'post'")
|
|
|
|
->periodical_title('varchar', 255, false, "''")
|
|
|
|
->periodical_tz('varchar', 128, false, "'UTC'")
|
|
|
|
->periodical_curdt('timestamp', 0, false, ' now()')
|
|
|
|
->periodical_enddt('timestamp', 0, false, 'now()')
|
|
|
|
->periodical_pub_int('varchar', 32, false, "'day'")
|
|
|
|
->periodical_pub_nb('smallint', 0, false, 1)
|
2021-08-23 11:24:19 +00:00
|
|
|
|
2021-08-23 22:52:29 +00:00
|
|
|
->primary('pk_periodical', 'periodical_id')
|
|
|
|
->index('idx_periodical_type', 'btree', 'periodical_type');
|
2021-08-23 11:24:19 +00:00
|
|
|
|
2022-11-14 21:08:00 +00:00
|
|
|
$ti = new dbStruct(dcCore::app()->con, dcCore::app()->prefix);
|
2021-08-23 22:52:29 +00:00
|
|
|
$changes = $ti->synchronize($t);
|
2021-08-23 11:24:19 +00:00
|
|
|
|
2021-08-23 22:52:29 +00:00
|
|
|
# Settings
|
2022-11-14 19:55:22 +00:00
|
|
|
dcCore::app()->blog->settings->addNamespace('periodical');
|
|
|
|
$s = dcCore::app()->blog->settings->periodical;
|
2021-08-23 22:52:29 +00:00
|
|
|
$s->put('periodical_active', false, 'boolean', 'Enable extension', false, true);
|
|
|
|
$s->put('periodical_upddate', true, 'boolean', 'Update post date', false, true);
|
|
|
|
$s->put('periodical_updurl', false, 'boolean', 'Update post url', false, true);
|
|
|
|
$s->put('periodical_pub_order', 'post_dt asc', 'string', 'Order of publication', false, true);
|
2021-08-23 11:24:19 +00:00
|
|
|
|
2021-08-23 22:52:29 +00:00
|
|
|
# Version
|
2022-12-03 15:30:57 +00:00
|
|
|
dcCore::app()->setVersion($mod_id, $new_version);
|
2021-08-23 11:24:19 +00:00
|
|
|
|
2021-08-23 22:52:29 +00:00
|
|
|
return true;
|
|
|
|
} catch (Exception $e) {
|
2022-11-14 19:55:22 +00:00
|
|
|
dcCore::app()->error->add($e->getMessage());
|
2021-08-23 11:24:19 +00:00
|
|
|
}
|
|
|
|
|
2022-11-14 21:08:00 +00:00
|
|
|
return false;
|