19 declare(strict_types=1);
45 $this->domain = $domain_service;
50 $this->session_repo->setLang($this->glossary->getRefId(),
$lang);
55 return $this->session_repo->getLang($this->glossary->getRefId());
59 int $other_glossary_ref_id,
62 $access = $this->domain->access();
64 if (!$access->checkAccessOfUser(
68 $this->glossary->getRefId()
74 if (!$access->checkAccessOfUser(
78 $other_glossary_ref_id
95 int $other_glossary_ref_id,
98 $access = $this->domain->access();
100 if (!$access->checkAccessOfUser(
104 $this->glossary->getRefId()
109 if (!$access->checkAccessOfUser(
113 $other_glossary_ref_id
119 $refs = new \ilGlossaryTermReferences($this->glossary->getId());
120 foreach ($term_ids as $term_id) {
125 if ($this->glossary->getId() == $other_glossary_obj_id) {
128 $refs->addTerm($term_id);
135 $rows = explode(
"\n", $input);
137 foreach ($rows as $row) {
138 $cells = explode(
";", $row);
139 if (count($cells) === 1) {
140 $cells = explode(
"\t", $row);
143 "term" => trim($cells[0] ??
""),
144 "definition" => trim($cells[1] ??
"")
153 $term = new \ilGlossaryTerm();
154 $term->setGlossaryId($this->glossary->getId());
155 $term->setTerm($data[
"term"]);
156 $term->setLanguage($language);
157 $term->setShortText($data[
"definition"]);
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();
getDataArrayFromInputString(string $input)
setSessionLang(string $lang)
Stores repository clipboard data.
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.
copyTermFromOtherGlossary(int $other_glossary_ref_id, int $term_id)
InternalDomainService $domain
static _lookGlossaryID(int $term_id)
get glossary id form term id