noodles/_install.php

65 lines
1.3 KiB
PHP
Raw Normal View History

2021-09-08 22:53:13 +00:00
<?php
/**
2021-09-08 23:05:05 +00:00
* @brief noodles, a plugin for Dotclear 2
*
* @package Dotclear
2021-09-08 23:05:05 +00:00
* @subpackage Plugin
*
2021-09-08 23:05:05 +00:00
* @author Jean-Christian Denis and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-09-09 07:12:31 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
return null;
}
2021-09-08 22:53:13 +00:00
2021-09-09 07:12:31 +00:00
$new_version = $core->plugins->moduleInfo('noodles', 'version');
2021-09-08 22:53:13 +00:00
$old_version = $core->getVersion('noodles');
2021-09-09 07:12:31 +00:00
if (version_compare($old_version, $new_version, '>=')) {
return null;
}
2021-11-01 09:28:22 +00:00
2021-09-09 07:12:31 +00:00
try {
$core->blog->settings->addNamespace('noodles');
2021-09-09 07:12:31 +00:00
$core->blog->settings->noodles->put(
2021-11-01 09:28:22 +00:00
'noodles_active',
false,
'boolean',
'Enable extension',
false,
true
2021-09-09 07:12:31 +00:00
);
2021-10-30 20:42:09 +00:00
$core->blog->settings->noodles->put(
2021-11-01 09:28:22 +00:00
'noodles_api',
'http://www.gravatar.com/',
'string',
'external API to use',
false,
true
2021-10-30 20:42:09 +00:00
);
$core->blog->settings->noodles->put(
2021-11-01 09:28:22 +00:00
'noodles_image',
'',
'string',
'Image filename',
false,
true
);
$core->blog->settings->noodles->put(
2021-11-01 09:28:22 +00:00
'noodles_object',
'',
'string',
'Noodles behaviors',
false,
true
);
2021-09-09 07:12:31 +00:00
$core->setVersion('noodles', $new_version);
2021-11-01 09:28:22 +00:00
return true;
2021-09-09 07:12:31 +00:00
} catch (Exception $e) {
$core->error->add($e->getMessage());
2021-09-08 22:53:13 +00:00
}
2021-11-01 09:28:22 +00:00
return false;