Lukas W.
Well-known member
I've decided to make use of the step setup installer for my add-ons to split up different steps and make debugging in case of an error simpler. However, the thing I was asking myself is: If I call a setup step from within an upgrade step (see below for example), will this just execute the setup step or will this trigger any undesired behavior like executing the following steps as well?
PHP:
public function installStep6() {
// Does Stuff
}
public function upgrade1000032Step1() {
$this->installStep6();
}