Add prepare function
This commit is contained in:
parent
a5dc0addea
commit
80babfa850
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue