ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilWikiPageConfig.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("./Services/COPage/classes/class.ilPageConfig.php");
6 
15 {
19  function init()
20  {
21  $this->setEnablePCType("Map", true);
22  $this->setEnablePCType("Tabs", true);
23  $this->setPreventHTMLUnmasking(true);
24  $this->setEnableInternalLinks(true);
25  $this->setEnableAnchors(true);
26  $this->setEnableWikiLinks(true);
27  $this->setIntLinkFilterWhiteList(true);
28  $this->addIntLinkFilter("RepositoryItem");
29  $this->addIntLinkFilter("WikiPage");
30  $this->setIntLinkHelpDefaultType("RepositoryItem");
31  $this->setEnablePCType("AMDPageList", true);
32  }
33 
39  function configureByObjectId($a_obj_id)
40  {
41  if ($a_obj_id > 0)
42  {
43  include_once("./Modules/Wiki/classes/class.ilObjWiki.php");
45  }
46  }
47 
48 }
49 
50 ?>