ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjContentPage.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 
27 {
28  protected int $styleId = 0;
32 
33  public function __construct(int $a_id = 0, bool $a_reference = true)
34  {
35  global $DIC;
36 
37  parent::__construct($a_id, $a_reference);
38  $this->initTranslationService();
39  $this->initPageMetricsService($DIC->refinery());
40  $this->content_style_domain = $DIC->contentStyle()
41  ->domain();
42  }
43 
44  private function initTranslationService(): void
45  {
46  if (null === $this->objTrans && $this->getId() > 0) {
47  $this->objTrans = ilObjectTranslation::getInstance($this->getId());
48  }
49  }
50 
51  private function initPageMetricsService(ILIAS\Refinery\Factory $refinery): void
52  {
53  $this->pageMetricsService = new PageMetricsService(
54  new PageMetricsRepositoryImp($this->db),
55  $refinery
56  );
57  }
58 
60  {
61  return $this->objTrans;
62  }
63 
64  protected function initType(): void
65  {
66  $this->type = self::OBJ_TYPE;
67  }
68 
69  protected function doCloneObject(ilObject2 $new_obj, int $a_target_id, ?int $a_copy_id = null): void
70  {
71  assert($new_obj instanceof ilObjContentPage);
72  parent::doCloneObject($new_obj, $a_target_id, $a_copy_id);
73  $this->cloneMetaData($new_obj);
74 
76  $ot->copy($new_obj->getId());
77 
78  if (ilContentPagePage::_exists($this->getType(), $this->getId(), '', true)) {
79  $translations = ilContentPagePage::lookupTranslations($this->getType(), $this->getId());
80  foreach ($translations as $language) {
81  $originalPageObject = new ilContentPagePage($this->getId(), 0, $language);
82  $copiedXML = $originalPageObject->copyXmlContent();
83 
84  $duplicatePageObject = new ilContentPagePage();
85  $duplicatePageObject->setId($new_obj->getId());
86  $duplicatePageObject->setParentId($new_obj->getId());
87  $duplicatePageObject->setLanguage($language);
88  $duplicatePageObject->setXMLContent($copiedXML);
89  $duplicatePageObject->createFromXML();
90 
91  $this->pageMetricsService->store(
93  $new_obj->getId(),
94  $duplicatePageObject->getLanguage()
95  )
96  );
97  }
98  }
99 
100  $style = $this->content_style_domain->styleForObjId($this->getId());
101  $style->cloneTo($new_obj->getId());
102 
104  $new_obj->getId(),
106  (string) ((bool) ilContainer::_lookupContainerSetting(
107  $this->getId(),
109  '1'
110  ))
111  );
112 
113  $lpSettings = new ilLPObjSettings($this->getId());
114  $lpSettings->cloneSettings($new_obj->getId());
115 
116  $cwo = ilCopyWizardOptions::_getInstance($a_copy_id);
117  //copy online status if object is not the root copy object
118  if (!$cwo->isRootNode($this->getRefId())) {
119  $new_obj->setOfflineStatus($this->getOfflineStatus());
120  } else {
121  $new_obj->setOfflineStatus(true);
122  }
123  $new_obj->update();
124  }
125 
126  protected function doRead(): void
127  {
128  parent::doRead();
129 
130  $this->initTranslationService();
131  }
132 
133  protected function doCreate(bool $clone_mode = false): void
134  {
135  parent::doCreate($clone_mode);
136 
137  $this->initTranslationService();
138 
139  $this->db->manipulateF(
140  'INSERT INTO content_page_data (content_page_id, stylesheet ) VALUES(%s, %s)',
141  ['integer', 'integer'],
142  [$this->getId(), 0]
143  );
144 
145  $this->setOfflineStatus(true);
146  $this->update();
147 
148  $this->createMetaData();
149  }
150 
151  protected function doUpdate(): void
152  {
153  parent::doUpdate();
154 
155  $this->initTranslationService();
156 
157  $trans = $this->getObjectTranslation();
158  $trans->setDefaultTitle($this->getTitle());
159  $trans->setDefaultDescription($this->getLongDescription());
160  $trans->save();
161 
162  $this->updateMetaData();
163  }
164 
165  protected function doDelete(): void
166  {
167  parent::doDelete();
168 
169  if (ilContentPagePage::_exists($this->getType(), $this->getId(), '', true)) {
170  $originalPageObject = new ilContentPagePage($this->getId());
171  $originalPageObject->delete();
172  }
173 
174  $this->initTranslationService();
175  $this->objTrans->delete();
176 
177  $this->db->manipulateF(
178  'DELETE FROM content_page_metrics WHERE content_page_id = %s',
179  ['integer'],
180  [$this->getId()]
181  );
182 
183  $this->db->manipulateF(
184  'DELETE FROM content_page_data WHERE content_page_id = %s',
185  ['integer'],
186  [$this->getId()]
187  );
188  }
189 
193  public function getPageObjIds(): array
194  {
195  $pageObjIds = [];
196 
197  $sql = 'SELECT DISTINCT page_id FROM page_object WHERE parent_id = %s AND parent_type = %s';
198  $res = $this->db->queryF(
199  $sql,
200  ['integer', 'text'],
201  [$this->getId(), $this->getType()]
202  );
203 
204  while ($row = $this->db->fetchAssoc($res)) {
205  $pageObjIds[] = (int) $row['page_id'];
206  }
207 
208  return $pageObjIds;
209  }
210 
211  public function trackProgress(int $usrId): void
212  {
214  $usrId,
215  $this->getId(),
216  $this->getRefId(),
217  $this->getType()
218  );
219  }
220 }
DomainService $content_style_domain
$res
Definition: ltiservices.php:66
Facade for consumer domain interface.
cloneMetaData(ilObject $target_obj)
doCloneObject(ilObject2 $new_obj, int $a_target_id, ?int $a_copy_id=null)
Interface Observer Contains several chained tasks and infos about them.
initPageMetricsService(ILIAS\Refinery\Factory $refinery)
static lookupTranslations(string $a_parent_type, int $a_id)
Lookup translations.
PageMetricsService $pageMetricsService
static _tracProgress(int $a_user_id, int $a_obj_id, int $a_ref_id, string $a_obj_type='')
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
static getInstance(int $obj_id)
global $DIC
Definition: shib_login.php:22
setOfflineStatus(bool $status)
static _writeContainerSetting(int $a_id, string $a_keyword, string $a_value)
ilObjectTranslation $objTrans
__construct(Container $dic, ilPlugin $plugin)
doCreate(bool $clone_mode=false)
getLongDescription()
get object long description (stored in object_description)
static _getInstance(int $a_copy_id)
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
__construct(int $a_id=0, bool $a_reference=true)