This commit is contained in:
SamBrishes 2020-05-24 09:22:08 +02:00 committed by GitHub
commit 9cab2579b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -66,6 +66,7 @@ class Plugin {
if ($this->installed()) {
$Tmp = new dbJSON($this->filenameDb);
$this->db = $Tmp->db;
$this->prepare();
}
}
@ -270,10 +271,16 @@ class Plugin {
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
}
public function prepare()
{
// This method is used on children classes
// The user can prepare the plugin, when it is installed
}
public function post()
{
$args = $_POST;