mirror of
https://github.com/Terranom674/Piwigo_Bratonien_Tools.git
synced 2026-09-19 14:04:34 +00:00
Add Piwigo plugin maintenance class
This commit is contained in:
28
maintain.class.php
Normal file
28
maintain.class.php
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
if (!defined('PHPWG_ROOT_PATH'))
|
||||||
|
{
|
||||||
|
die('Hacking attempt!');
|
||||||
|
}
|
||||||
|
|
||||||
|
class BratonienTools_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()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user