ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilPageContent.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 
37 abstract class ilPageContent
38 {
39  //var $type; // type
40  var $hier_id; // hierarchical editing id
41  var $node; // node in page xml
42  var $dom; // dom object
43 
50  final function __construct($a_dom)
51  {
52  $this->dom = $a_dom;
53  $this->init();
54  if ($this->getType() == "")
55  {
56  die ("Error: ilPageContent::init() did not set type");
57  }
58  }
59 
64  abstract function init();
65 
71  final protected function setType($a_type)
72  {
73  $this->type = $a_type;
74  }
75 
81  function getType()
82  {
83  return $this->type;
84  }
85 
91  function setNode(&$a_node)
92  {
93  $this->node =& $a_node;
94  }
95 
96 
102  function &getNode()
103  {
104  return $this->node;
105  }
106 
107 
113  function setHierId($a_hier_id)
114  {
115  $this->hier_id = $a_hier_id;
116  }
117 
121  function getHierId()
122  {
123  return $this->hier_id;
124  }
125 
126 
130  function lookupHierId()
131  {
132  return $this->node->get_attribute("HierId");
133  }
134 
140  function readHierId()
141  {
142  if (is_object($this->node))
143  {
144  return $this->node->get_attribute("HierId");
145  }
146  }
147 
153  function setPcId($a_pcid)
154  {
155  $this->pcid = $a_pcid;
156  }
157 
163  function getPCId()
164  {
165  return $this->pcid;
166  }
167 
168 
174  function readPCId()
175  {
176  if (is_object($this->node))
177  {
178  return $this->node->get_attribute("PCID");
179  }
180  }
181 
189  final static function incEdId($ed_id)
190  {
191  $id = explode("_", $ed_id);
192  $id[count($id) - 1]++;
193 
194  return implode($id, "_");
195  }
196 
204  final static function decEdId($ed_id)
205  {
206  $id = explode("_", $ed_id);
207  $id[count($id) - 1]--;
208 
209  return implode($id, "_");
210  }
211 
220  final static function haveSameContainer($ed_id1, $ed_id2)
221  {
222  $id1 = explode("_", $ed_id1);
223  $id2 = explode("_", $ed_id1);
224  if(count($id1) == count($id2))
225  {
226  array_pop($id1);
227  array_pop($id2);
228  foreach ($id1 as $key => $id)
229  {
230  if($id != $id2[$key])
231  {
232  return false;
233  }
234  }
235  return true;
236  }
237  return false;
238  }
239 
243  static function sortHierIds($a_array)
244  {
245  uasort($a_array, array("ilPageContent", "isGreaterHierId"));
246 
247  return $a_array;
248  }
249 
253  function isGreaterHierId($a, $b)
254  {
255  $a_arr = explode("_", $a);
256  $b_arr = explode("_", $b);
257  for ($i = 0; $i < count($a_arr); $i++)
258  {
259  if ((int) $a_arr[$i] > (int) $b_arr[$i])
260  {
261  return true;
262  }
263  else if ((int) $a_arr[$i] < (int) $b_arr[$i])
264  {
265  return false;
266  }
267  }
268  return false;
269  }
270 
277  function setEnabled($value)
278  {
279  if (is_object($this->node))
280  {
281  $this->node->set_attribute("Enabled", $value);
282  }
283  }
284 
288  function enable()
289  {
290  $this->setEnabled("True");
291  }
292 
296  function disable()
297  {
298  $this->setEnabled("False");
299  }
300 
306  final function isEnabled()
307  {
308  if (is_object($this->node) && $this->node->has_attribute("Enabled"))
309  {
310  $compare = $this->node->get_attribute("Enabled");
311  }
312  else
313  {
314  $compare = "True";
315  }
316 
317  return strcasecmp($compare,"true") == 0;
318  }
319 
323  function createPageContentNode($a_set_this_node = true)
324  {
325  $node = $this->dom->create_element("PageContent");
326  if ($a_set_this_node)
327  {
328  $this->node = $node;
329  }
330  return $node;
331  }
332 
336 /*
337  function setAnchor($a_name)
338  {
339  $node = $this->getNode();
340 
341  ilDOMUtil::setFirstOptionalElement($this->dom, $node, "Anchor",
342  array("BibItemIdentifier"), $a_name, array());
343  }*/
344 
348 /*
349  function getAnchor()
350  {
351  $node = $this->getNode();
352  $childs = $node->child_nodes();
353 
354  for ($i=0; $i<count($childs); $i++)
355  {
356  if ($childs[$i]->node_name() == "Anchor")
357  {
358  return $childs[$i]->get_content();
359  }
360  }
361 
362  return "";
363  }
364 */
365 }
366 ?>