ILIAS  Release_4_1_x_branch Revision 61804
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilPageConfig.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
12 {
13  var $int_link_filter = array();
14  var $prevent_rte_usage = false;
15 
21  function addIntLinkFilter($a_val)
22  {
23  if (is_array($a_val))
24  {
25  $this->int_link_filter =
26  array_merge($a_val, $this->int_link_filter);
27  }
28  else
29  {
30  $this->int_link_filter[] = $a_val;
31  }
32  }
33 
39  function getIntLinkFilters()
40  {
42  }
43 
49  function setPreventRteUsage($a_val)
50  {
51  $this->prevent_rte_usage = $a_val;
52  }
53 
59  function getPreventRteUsage()
60  {
62  }
63 }
64 ?>