ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.TermManager.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
30 {
33  protected \ilObjGlossary $glossary;
34  protected int $user_id;
35 
36  public function __construct(
37  InternalDomainService $domain_service,
38  TermSessionRepository $session_repo,
39  \ilObjGlossary $glossary,
40  int $user_id
41  ) {
42  $this->session_repo = $session_repo;
43  $this->glossary = $glossary;
44  $this->user_id = $user_id;
45  $this->domain = $domain_service;
46  }
47 
48  public function setSessionLang(string $lang): void
49  {
50  $this->session_repo->setLang($this->glossary->getRefId(), $lang);
51  }
52 
53  public function getSessionLang(): string
54  {
55  return $this->session_repo->getLang($this->glossary->getRefId());
56  }
57 
58  public function copyTermFromOtherGlossary(
59  int $other_glossary_ref_id,
60  int $term_id
61  ): void {
62  $access = $this->domain->access();
63 
64  if (!$access->checkAccessOfUser(
65  $this->user_id,
66  "write",
67  "",
68  $this->glossary->getRefId()
69  )
70  ) {
71  return;
72  }
73 
74  if (!$access->checkAccessOfUser(
75  $this->user_id,
76  "read",
77  "",
78  $other_glossary_ref_id
79  )) {
80  return;
81  }
82 
83  if (\ilGlossaryTerm::_lookGlossaryID($term_id) !=
84  \ilObject::_lookupObjectId($other_glossary_ref_id)) {
85  return;
86  }
87 
88  \ilGlossaryTerm::_copyTerm($term_id, $this->glossary->getId());
89  }
90 
95  int $other_glossary_ref_id,
96  array $term_ids
97  ): void {
98  $access = $this->domain->access();
99 
100  if (!$access->checkAccessOfUser(
101  $this->user_id,
102  "write",
103  "",
104  $this->glossary->getRefId()
105  )) {
106  return;
107  }
108 
109  if (!$access->checkAccessOfUser(
110  $this->user_id,
111  "read",
112  "",
113  $other_glossary_ref_id
114  )) {
115  return;
116  }
117 
118  $other_glossary_obj_id = \ilObject::_lookupObjectId($other_glossary_ref_id);
119  $refs = new \ilGlossaryTermReferences($this->glossary->getId());
120  foreach ($term_ids as $term_id) {
121  if (\ilGlossaryTerm::_lookGlossaryID($term_id) != $other_glossary_obj_id) {
122  continue;
123  }
124 
125  if ($this->glossary->getId() == $other_glossary_obj_id) {
126  continue;
127  }
128  $refs->addTerm($term_id);
129  }
130  $refs->update();
131  }
132 
133  public function getDataArrayFromInputString(string $input): array
134  {
135  $rows = explode("\n", $input);
136  $data = [];
137  foreach ($rows as $row) {
138  $cells = explode(";", $row);
139  if (count($cells) === 1) {
140  $cells = explode("\t", $row);
141  }
142  $data[] = [
143  "term" => trim($cells[0] ?? ""),
144  "definition" => trim($cells[1] ?? "")
145  ];
146  }
147  return $data;
148  }
149 
150  public function createTermDefinitionPairsFromBulkInputString(string $input, string $language): void
151  {
152  foreach ($this->getDataArrayFromInputString($input) as $data) {
153  $term = new \ilGlossaryTerm();
154  $term->setGlossaryId($this->glossary->getId());
155  $term->setTerm($data["term"]);
156  $term->setLanguage($language);
157  $term->setShortText($data["definition"]);
158  $term->create(true);
159 
160  $page_object = new \ilGlossaryDefPage();
161  $page_object->setId($term->getId());
162  $page_object->setParentId($this->glossary->getId());
163  $page_object->create(false);
164  $paragraph = new \ilPCParagraph($page_object);
165  $paragraph->create($page_object, "pg");
166  $paragraph->setLanguage($language);
167  $paragraph->setText($data["definition"]);
168  $page_object->update();
169  }
170  }
171 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
TermSessionRepository $session_repo
static _copyTerm(int $a_term_id, int $a_glossary_id)
Copy a term to a glossary.
createTermDefinitionPairsFromBulkInputString(string $input, string $language)
__construct(InternalDomainService $domain_service, TermSessionRepository $session_repo, \ilObjGlossary $glossary, int $user_id)
static _lookupObjectId(int $ref_id)
referenceTermsFromOtherGlossary(int $other_glossary_ref_id, array $term_ids)
Reference terms of another glossary in current glossary.
$lang
Definition: xapiexit.php:25
copyTermFromOtherGlossary(int $other_glossary_ref_id, int $term_id)
static _lookGlossaryID(int $term_id)
get glossary id form term id