20 declare(strict_types=1);
32 string $operation_name,
43 return hash(
'sha256', self::class .
'::' . $this->operation_name);
48 return 'Add OrgUnit operation (name=' . $this->operation_name .
49 ';context=' . $this->context .
')';
66 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
69 if (!($context_id = $this->
getContextId($db, $this->context))) {
71 'Context ' . $this->context .
' does not exists, 72 this objective should not be applied!' 85 $id = $db->nextId(
'il_orgu_operations');
86 $db->insert(
'il_orgu_operations', [
87 'operation_id' => [
'integer',
$id],
88 'operation_string' => [
'text', $this->operation_name],
89 'description' => [
'text', $this->description],
90 'list_order' => [
'integer', 0],
91 'context_id' => [
'integer', $context_id],
99 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
102 if (!($context_id = $this->
getContextId($db, $this->context))) {
103 throw new Setup\UnachievableException(
104 'Cannot find context ' . $this->context
112 $this->operation_name
125 $result = $db->
query(
'SELECT * FROM il_orgu_operations 126 WHERE context_id = ' . $db->
quote($context_id,
'integer') .
127 ' AND operation_string = ' . $db->
quote($operation,
'text'));
128 if ($result->numRows()) {
141 $result = $db->
query(
'SELECT id FROM il_orgu_op_contexts 142 WHERE context = ' . $db->
quote($context,
'text'));
143 if (!($row = $result->fetchObject())) {
146 return (
int) $row->id;
isApplicable(Environment $environment)
doesOperationExistInContext(ilDBInterface $db, int $context_id, string $operation)
quote($value, string $type)
getPreconditions(Environment $environment)
getContextId(ilDBInterface $db, string $context)
Defaults to 0 if context is not found.
query(string $query)
Run a (read-only) Query on the database.
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...
__construct(string $operation_name, string $description, string $context=ilOrgUnitOperationContext::CONTEXT_OBJECT)
An environment holds resources to be used in the setup process.
achieve(Environment $environment)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins