19 declare(strict_types=1);
32 public function __construct(
string $class,
string $type,
string $tag, array $parameters = [],
int $hide = 0)
34 $this->
class = $class;
43 return hash(
"sha256", self::class);
48 return "Add style class";
65 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
68 "SELECT obj_id" . PHP_EOL
69 .
"FROM object_data" . PHP_EOL
70 .
"WHERE type = 'sty'" . PHP_EOL
72 $result = $db->query($sql);
74 while ($row = $db->fetchAssoc($result)) {
76 "SELECT style_id, type, characteristic, hide" . PHP_EOL
77 .
"FROM style_char" . PHP_EOL
78 .
"WHERE style_id = " . $db->quote($row[
"obj_id"],
"integer") . PHP_EOL
79 .
"AND characteristic = " . $db->quote($this->
class,
"text") . PHP_EOL
80 .
"AND type = " . $db->quote($this->type,
"text") . PHP_EOL
82 $res = $db->query($sql);
84 if (!$db->fetchAssoc(
$res)) {
86 "style_id" => [
"integer", $row[
"obj_id"]],
91 $db->insert(
"style_char", $values);
94 $spid = $db->nextId(
"style_parameter");
96 "id" => [
"integer", $spid],
97 "style_id" => [
"integer", $row[
"obj_id"]],
100 "parameter" => [
"text", $k],
101 "value" => [
"text", $v],
104 $db->insert(
"style_parameter", $values);
114 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
117 "SELECT obj_id" . PHP_EOL
118 .
"FROM object_data" . PHP_EOL
119 .
"WHERE type = 'sty'" . PHP_EOL
122 $result = $db->query($sql);
124 while ($row = $db->fetchAssoc($result)) {
126 "SELECT style_id, type, characteristic, hide" . PHP_EOL
127 .
"FROM style_char" . PHP_EOL
128 .
"WHERE style_id = " . $db->quote($row[
"obj_id"],
"integer") . PHP_EOL
129 .
"AND characteristic = " . $db->quote($this->
class,
"text") . PHP_EOL
130 .
"AND type = " . $db->quote($this->type,
"text") . PHP_EOL;
131 $res = $db->query($sql);
134 if ($db->numRows(
$res) == 0) {
parameters()
description: > This shows how different states are being used in the same Prompt according to parame...
isApplicable(Environment $environment)
achieve(Environment $environment)
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
getPreconditions(Environment $environment)
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.
__construct(string $class, string $type, string $tag, array $parameters=[], int $hide=0)