19 declare(strict_types=1);
33 public function __construct(
int $a_id = 0,
bool $a_reference =
true)
40 $this->content_style_domain = $DIC->contentStyle()
46 if (null === $this->objTrans && $this->
getId() > 0) {
66 $this->type = self::OBJ_TYPE;
72 parent::doCloneObject($new_obj, $a_target_id, $a_copy_id);
75 $ot->copy($new_obj->
getId());
79 foreach ($translations as $language) {
81 $copiedXML = $originalPageObject->copyXmlContent();
84 $duplicatePageObject->setId($new_obj->
getId());
85 $duplicatePageObject->setParentId($new_obj->
getId());
86 $duplicatePageObject->setLanguage($language);
87 $duplicatePageObject->setXMLContent($copiedXML);
88 $duplicatePageObject->createFromXML();
90 $this->pageMetricsService->store(
93 $duplicatePageObject->getLanguage()
99 $style = $this->content_style_domain->styleForObjId($this->
getId());
100 $style->cloneTo($new_obj->
getId());
113 $lpSettings->cloneSettings($new_obj->
getId());
117 if (!$cwo->isRootNode($this->getRefId())) {
132 protected function doCreate(
bool $clone_mode =
false): void
134 parent::doCreate($clone_mode);
138 $this->db->manipulateF(
139 'INSERT INTO content_page_data (content_page_id, stylesheet ) VALUES(%s, %s)',
140 [
'integer',
'integer'],
155 $trans->setDefaultTitle($this->
getTitle());
166 $originalPageObject->delete();
170 $this->objTrans->delete();
172 $this->db->manipulateF(
173 'DELETE FROM content_page_metrics WHERE content_page_id = %s',
178 $this->db->manipulateF(
179 'DELETE FROM content_page_data WHERE content_page_id = %s',
192 $sql =
'SELECT DISTINCT page_id FROM page_object WHERE parent_id = %s AND parent_type = %s';
193 $res = $this->db->queryF(
199 while ($row = $this->db->fetchAssoc(
$res)) {
200 $pageObjIds[] = (
int) $row[
'page_id'];
DomainService $content_style_domain
Facade for consumer domain interface.
doCloneObject(ilObject2 $new_obj, int $a_target_id, ?int $a_copy_id=null)
Class ChatMainBarProvider .
initPageMetricsService(ILIAS\Refinery\Factory $refinery)
static lookupTranslations(string $a_parent_type, int $a_id)
Lookup translations.
static _lookupContainerSetting(int $a_id, string $a_keyword, string $a_default_value=null)
PageMetricsService $pageMetricsService
static _tracProgress(int $a_user_id, int $a_obj_id, int $a_ref_id, string $a_obj_type='')
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)
trackProgress(int $usrId)
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)
const INFO_TAB_VISIBILITY
static _getInstance(int $a_copy_id)
__construct(int $a_id=0, bool $a_reference=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Refinery Factory $refinery