ILIAS  Release_4_4_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->setIntLinkHelpDefaultType("RepositoryItem");
30  }
31 
37  function configureByObjectId($a_obj_id)
38  {
39  if ($a_obj_id > 0)
40  {
41  include_once("./Modules/Wiki/classes/class.ilObjWiki.php");
43  }
44  }
45 
46 }
47 
48 ?>