Add prepare function

This commit is contained in:
SamBrishes 2020-05-13 10:37:09 +02:00
parent a5dc0addea
commit 80babfa850
1 changed files with 8 additions and 1 deletions

View File

@ -66,6 +66,7 @@ class Plugin {
if ($this->installed()) { if ($this->installed()) {
$Tmp = new dbJSON($this->filenameDb); $Tmp = new dbJSON($this->filenameDb);
$this->db = $Tmp->db; $this->db = $Tmp->db;
$this->prepare();
} }
} }
@ -270,10 +271,16 @@ class Plugin {
public function init() public function init()
{ {
// This method is used on childre classes. // This method is used on children classes
// The user can define his own field of the database // The user can define his own field of the database
} }
public function prepare()
{
// This method is used on children classes
// The user can prepare the plugin, when it is installed
}
public function post() public function post()
{ {
$args = $_POST; $args = $_POST;