periodical/_install.php

72 lines
2.2 KiB
PHP
Raw Normal View History

2021-08-23 11:24:19 +00:00
<?php
2021-09-02 12:56:02 +00:00
/**
* @brief periodical, 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
*/
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
}
2021-08-23 22:52:29 +00:00
$dc_min = '2.19';
2021-08-23 11:24:19 +00:00
$new_version = $core->plugins->moduleInfo('periodical', 'version');
$old_version = $core->getVersion('periodical');
if (version_compare($old_version, $new_version, '>=')) {
2021-08-23 22:52:29 +00:00
return null;
2021-08-23 11:24:19 +00:00
}
try {
2021-08-23 22:52:29 +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', 'periodical', $dc_min
));
}
2021-08-23 11:24:19 +00:00
2021-08-23 22:52:29 +00:00
# Tables
$t = new dbStruct($core->con,$core->prefix);
2021-08-23 11:24:19 +00:00
2021-08-23 22:52:29 +00:00
# Table principale des sondages
$t->periodical
->periodical_id ('bigint', 0, false)
->blog_id('varchar', 32, false)
->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
2021-08-23 22:52:29 +00:00
$ti = new dbStruct($core->con, $core->prefix);
$changes = $ti->synchronize($t);
2021-08-23 11:24:19 +00:00
2021-08-23 22:52:29 +00:00
# Settings
$core->blog->settings->addNamespace('periodical');
$s = $core->blog->settings->periodical;
$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
$core->setVersion('periodical', $new_version);
2021-08-23 11:24:19 +00:00
2021-08-23 22:52:29 +00:00
return true;
} catch (Exception $e) {
$core->error->add($e->getMessage());
2021-08-23 11:24:19 +00:00
}
2021-08-23 22:52:29 +00:00
return false;