ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLMPage.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
10 class ilLMPage extends ilPageObject
11 {
17  public function getParentType()
18  {
19  return "lm";
20  }
21 
28  public function afterConstructor()
29  {
30  $this->getPageConfig()->configureByObjectId($this->getParentId());
31  }
32 
33 
44  public function beforePageContentUpdate($a_page_content)
45  {
46  if ($a_page_content->getType() == "par") {
48  $a_page_content->autoLinkGlossaries($glos);
49  }
50  }
51 
55  public function afterUpdate()
56  {
57  $references = ilObject::_getAllReferences($this->getParentId());
58  $notification = new ilLearningModuleNotification(
61  new ilObjLearningModule(reset($references)),
62  $this->getId()
63  );
64 
65  $notification->send();
66  }
67 
72  public function createWithLayoutId(int $a_layout_id)
73  {
74 
75  //get XML Data for Layout
76  $layout_obj = new ilPageLayout($a_layout_id);
77 
78  parent::setXMLContent($layout_obj->getXMLContent());
79  parent::create();
80  }
81 }
beforePageContentUpdate($a_page_content)
Before page content update.
createWithLayoutId(int $a_layout_id)
Create page with layout.
Class ilObjLearningModule.
Class ilPageLayout.
static _getAllReferences($a_id)
get all reference ids of object
afterConstructor()
After constructor.
Class ilPageObject.
static lookupAutoGlossaries($a_lm_id)
Lookup auto glossaries.
getParentType()
Get parent type.
getPageConfig()
Get page config object.
Class ilLearningModuleNotification class.
afterUpdate()
After update content send notifications.
Extension of ilPageObject for learning modules.