mirror of
https://github.com/Terranom674/Piwigo_Bratonien_Tools.git
synced 2026-09-19 11:44:31 +00:00
29 lines
434 B
PHP
29 lines
434 B
PHP
<?php
|
|
if (!defined('PHPWG_ROOT_PATH'))
|
|
{
|
|
die('Hacking attempt!');
|
|
}
|
|
|
|
class bratonien_tools_maintain extends PluginMaintain
|
|
{
|
|
public function install($plugin_version, &$errors = array())
|
|
{
|
|
}
|
|
|
|
public function activate($plugin_version, &$errors = array())
|
|
{
|
|
}
|
|
|
|
public function deactivate()
|
|
{
|
|
}
|
|
|
|
public function update($old_version, $new_version, &$errors = array())
|
|
{
|
|
}
|
|
|
|
public function uninstall()
|
|
{
|
|
}
|
|
}
|