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);
76 $ot->copy($new_obj->
getId());
80 foreach ($translations as $language) {
82 $copiedXML = $originalPageObject->copyXmlContent();
85 $duplicatePageObject->setId($new_obj->
getId());
86 $duplicatePageObject->setParentId($new_obj->
getId());
87 $duplicatePageObject->setLanguage($language);
88 $duplicatePageObject->setXMLContent($copiedXML);
89 $duplicatePageObject->createFromXML();
91 $this->pageMetricsService->store(
94 $duplicatePageObject->getLanguage()
100 $style = $this->content_style_domain->styleForObjId($this->
getId());
101 $style->cloneTo($new_obj->
getId());
114 $lpSettings->cloneSettings($new_obj->
getId());
118 if (!$cwo->isRootNode($this->getRefId())) {
133 protected function doCreate(
bool $clone_mode =
false): void
135 parent::doCreate($clone_mode);
139 $this->db->manipulateF(
140 'INSERT INTO content_page_data (content_page_id, stylesheet ) VALUES(%s, %s)',
141 [
'integer',
'integer'],
158 $trans->setDefaultTitle($this->
getTitle());
171 $originalPageObject->delete();
175 $this->objTrans->delete();
177 $this->db->manipulateF(
178 'DELETE FROM content_page_metrics WHERE content_page_id = %s',
183 $this->db->manipulateF(
184 'DELETE FROM content_page_data WHERE content_page_id = %s',
197 $sql =
'SELECT DISTINCT page_id FROM page_object WHERE parent_id = %s AND parent_type = %s';
198 $res = $this->db->queryF(
204 while ($row = $this->db->fetchAssoc(
$res)) {
205 $pageObjIds[] = (
int) $row[
'page_id'];
DomainService $content_style_domain
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)
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)
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
__construct(int $a_id=0, bool $a_reference=true)