19 declare(strict_types=1);
37 return hash(
"sha256", self::class);
42 return "Update operation order (operation=$this->operation;pos=$this->pos)";
59 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
63 [
'op_order' => [
"integer", $this->pos]],
64 [
"operation" => [
"text", $this->operation]]
72 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
75 "SELECT ops_id" . PHP_EOL
76 .
"FROM rbac_operations" . PHP_EOL
77 .
"WHERE operation = " . $db->quote($this->operation,
"text") . PHP_EOL
80 return $db->numRows($db->query($sql)) == 1;
__construct(string $operation, int $pos)
isApplicable(Environment $environment)
getPreconditions(Environment $environment)
achieve(Environment $environment)
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.