mirror of
https://github.com/YunoHost-Apps/piwigo_ynh.git
synced 2024-09-03 20:06:03 +02:00
32 lines
630 B
PHP
32 lines
630 B
PHP
|
<?php
|
||
|
defined('PHPWG_ROOT_PATH') or die('Hacking attempt!');
|
||
|
|
||
|
class AdminTools_maintain extends PluginMaintain
|
||
|
{
|
||
|
private $default_conf = array(
|
||
|
'default_open' => true,
|
||
|
'closed_position' => 'left',
|
||
|
'public_quick_edit' => true,
|
||
|
);
|
||
|
|
||
|
function install($plugin_version, &$errors=array())
|
||
|
{
|
||
|
global $conf;
|
||
|
|
||
|
if (empty($conf['AdminTools']))
|
||
|
{
|
||
|
conf_update_param('AdminTools', $this->default_conf, true);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function update($old_version, $new_version, &$errors=array())
|
||
|
{
|
||
|
$this->install($new_version, $errors);
|
||
|
}
|
||
|
|
||
|
function uninstall()
|
||
|
{
|
||
|
conf_delete_param('AdminTools');
|
||
|
}
|
||
|
}
|