78 return "Database update steps in " . get_class($this);
94 $log = $environment->
getResource(\ilDatabaseUpdateStepExecutionLog::class);
97 $finished =
$log->getLastFinishedStep(get_class($this));
131 if ($s <= $finished) {
133 } elseif ($s <= $num) {
149 return end($this->steps);
159 if (!is_null($this->steps)) {
165 foreach (get_class_methods(static::class) as $method) {
166 if (stripos($method, self::STEP_METHOD_PREFIX) !== 0) {
170 $number = substr($method, strlen(self::STEP_METHOD_PREFIX));
172 if (!preg_match(
"/^[1-9]\d*$/", $number)) {
173 throw new \LogicException(
"Method $method seems to be a step but has an odd looking number");
176 $this->steps[(int) $number] = (
int) $number;
An objective is a desired state of the system that is supposed to be created by the setup...
getLabel()
Get a label that describes this objective.
achieve(Environment $environment)
getAdditionalPreconditionsForStep(int $num)
Get preconditions for steps.
__construct(Objective $base)
getLatestStepNum()
Get the number of latest database step in this class.
getSteps()
Get the numbers of the steps in this class.
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
getHash()
The hash for the objective is calculated over the classname and the steps that are contained...
isApplicable(Environment $environment)
An environment holds resources to be used in the setup process.
getStep(int $num, int $finished=0)
Get a database update step.
This encapsulate one database update step which is a method on some ilDatabaseUpdateSteps-object.
This base-class simplifies the creation of (consecutive) database updates.
getPreconditions(Environment $environment)