ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilCOPageDefReader.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
12 {
16  protected $db;
17 
18  public function __construct(\ilDBInterface $db)
19  {
20  $this->db = $db;
21  }
22 
23  protected function getDB() : \ilDBInterface
24  {
25  return $this->db;
26  }
27 
34  public function clearTables()
35  {
36  $ilDB = $this->getDB();
37 
38  $ilDB->manipulate("DELETE FROM copg_pc_def");
39  $ilDB->manipulate("DELETE FROM copg_pobj_def");
40  }
41 
49  public function handlerBeginTag($a_xml_parser, $a_name, $a_attribs, $a_comp)
50  {
51  $ilDB = $this->getDB();
52 
53  switch ($a_name) {
54  case "pagecontent":
55  $ilDB->manipulate("INSERT INTO copg_pc_def " .
56  "(pc_type, name, component, directory, int_links, style_classes, xsl, def_enabled) VALUES (" .
57  $ilDB->quote($a_attribs["pc_type"], "text") . "," .
58  $ilDB->quote($a_attribs["name"], "text") . "," .
59  $ilDB->quote($a_comp, "text") . "," .
60  $ilDB->quote($a_attribs["directory"], "text") . "," .
61  $ilDB->quote($a_attribs["int_links"], "integer") . "," .
62  $ilDB->quote($a_attribs["style_classes"], "integer") . "," .
63  $ilDB->quote($a_attribs["xsl"], "integer") . "," .
64  $ilDB->quote($a_attribs["def_enabled"], "integer") .
65  ")");
66  break;
67 
68  case "pageobject":
69  $ilDB->manipulate("INSERT INTO copg_pobj_def " .
70  "(parent_type, class_name, component, directory) VALUES (" .
71  $ilDB->quote($a_attribs["parent_type"], "text") . "," .
72  $ilDB->quote($a_attribs["class_name"], "text") . "," .
73  $ilDB->quote($a_comp, "text") . "," .
74  $ilDB->quote($a_attribs["directory"], "text") .
75  ")");
76  break;
77  }
78  }
79 
86  public function handlerEndTag($a_xml_parser, $a_name)
87  {
88  }
89 }
COPage definition xml reader class.
handlerBeginTag($a_xml_parser, $a_name, $a_attribs, $a_comp)
Start tag handler.
Interface ilDBInterface.
handlerEndTag($a_xml_parser, $a_name)
End tag handler.
clearTables()
Clear definition tables.
__construct(\ilDBInterface $db)
global $ilDB