ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
ilTableDataParser Class Reference
+ Inheritance diagram for ilTableDataParser:
+ Collaboration diagram for ilTableDataParser:

Public Member Functions

 setHandlers ($a_xml_parser)
 set event handler should be overwritten by inherited class @access private More...
 
 handlerBeginTag ($a_xml_parser, $a_name, $a_attribs)
 handler for begin of element More...
 
 handlerEndTag ($a_xml_parser, $a_name)
 handler for begin of element More...
 
 handlerCharacterData ($a_xml_parser, $a_data)
 
- Public Member Functions inherited from ilSaxParser
 ilSaxParser ($a_xml_file='', $throwException=false)
 Constructor setup ILIAS global object @access public. More...
 
 setXMLContent ($a_xml_content)
 
 getXMLContent ()
 
 getInputType ()
 
 startParsing ()
 stores xml data in array More...
 
 createParser ()
 create parser More...
 
 setOptions ($a_xml_parser)
 set parser options More...
 
 setHandlers ($a_xml_parser)
 set event handler should be overwritten by inherited class @access private More...
 
 openXMLFile ()
 open xml file More...
 
 parse ($a_xml_parser, $a_fp=null)
 parse xml file More...
 
 freeParser ($a_xml_parser)
 free xml parser handle More...
 
 setThrowException ($throwException)
 set error handling More...
 
- Public Member Functions inherited from PEAR
 PEAR ($error_class=null)
 Constructor. More...
 
 _PEAR ()
 Destructor (the emulated type of...). More...
 
getStaticProperty ($class, $var)
 If you have a class that's mostly/entirely static, and you need static properties, you can use this method to simulate them. More...
 
 registerShutdownFunc ($func, $args=array())
 Use this function to register a shutdown method for static classes. More...
 
 isError ($data, $code=null)
 Tell whether a value is a PEAR error. More...
 
 setErrorHandling ($mode=null, $options=null)
 Sets how errors generated by this object should be handled. More...
 
 expectError ($code=' *')
 This method is used to tell which errors you expect to get. More...
 
 popExpect ()
 This method pops one element off the expected error codes stack. More...
 
 _checkDelExpect ($error_code)
 This method checks unsets an error code if available. More...
 
 delExpect ($error_code)
 This method deletes all occurences of the specified element from the expected error codes stack. More...
 
raiseError ($message=null, $code=null, $mode=null, $options=null, $userinfo=null, $error_class=null, $skipmsg=false)
 This method is a wrapper that returns an instance of the configured error class with this object's default error handling applied. More...
 
throwError ($message=null, $code=null, $userinfo=null)
 Simpler form of raiseError with fewer options. More...
 
 staticPushErrorHandling ($mode, $options=null)
 
 staticPopErrorHandling ()
 
 pushErrorHandling ($mode, $options=null)
 Push a new error handler on top of the error handler options stack. More...
 
 popErrorHandling ()
 Pop the last error handler used. More...
 
 loadExtension ($ext)
 OS independant PHP extension load. More...
 

Protected Attributes

 $cdata = ''
 
 $table = ''
 
 $values = array()
 

Additional Inherited Members

- Data Fields inherited from ilSaxParser
 $input_type = null
 
 $xml_content = ''
 
 $ilias
 
 $lng
 
 $xml_file
 
 $throwException = false
 
- Data Fields inherited from PEAR
 $_debug = false
 
 $_default_error_mode = null
 
 $_default_error_options = null
 
 $_default_error_handler = ''
 
 $_error_class = 'PEAR_Error'
 
 $_expected_errors = array()
 
- Protected Member Functions inherited from ilSaxParser
 handleError ($message, $code)
 use given error handler to handle error message or internal ilias error message handle More...
 

Detailed Description

Author
Stefan Meyer smeye.nosp@m.r.il.nosp@m.ias@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 8 of file class.ilTableDataParser.php.

Member Function Documentation

◆ handlerBeginTag()

ilTableDataParser::handlerBeginTag (   $a_xml_parser,
  $a_name,
  $a_attribs 
)

handler for begin of element

Definition at line 29 of file class.ilTableDataParser.php.

30 {
31 switch($a_name)
32 {
33 case 'Table':
34 $this->table = $a_attribs['name'];
35 break;
36
37 case 'Row':
38 $this->values = array();
39 $this->num_values = -1;
40 break;
41
42 case 'Value':
43 $this->cdata = null;
44 $this->num_values++;
45 $this->values[$this->num_values]['name'] = $a_attribs['name'];
46 $this->values[$this->num_values]['type'] = $a_attribs['type'];
47 break;
48 }
49 }

◆ handlerCharacterData()

ilTableDataParser::handlerCharacterData (   $a_xml_parser,
  $a_data 
)

Definition at line 79 of file class.ilTableDataParser.php.

80 {
81 if($this->cdata != null)
82 {
83 $this->cdata .= $a_data;
84 }
85 else
86 {
87 $this->cdata = $a_data;
88 }
89 }

◆ handlerEndTag()

ilTableDataParser::handlerEndTag (   $a_xml_parser,
  $a_name 
)

handler for begin of element

Definition at line 54 of file class.ilTableDataParser.php.

55 {
56 global $ilDB;
57
58 switch($a_name)
59 {
60 case 'Table':
61 break;
62
63 case 'Row':
64
65 $val = array();
66 foreach($this->values as $key => $data)
67 {
68 $val[$data['name']] = array($data['type'],$data['val']);
69 }
70 $ilDB->insert($this->table,$val);
71 break;
72
73 case 'Value':
74 $this->values[$this->num_values]['val'] = $this->cdata;
75 break;
76 }
77 }
$data
global $ilDB

References $cdata, $data, and $ilDB.

◆ setHandlers()

ilTableDataParser::setHandlers (   $a_xml_parser)

set event handler should be overwritten by inherited class @access private

Reimplemented from ilSaxParser.

Definition at line 19 of file class.ilTableDataParser.php.

20 {
21 xml_set_object($a_xml_parser,$this);
22 xml_set_element_handler($a_xml_parser,'handlerBeginTag','handlerEndTag');
23 xml_set_character_data_handler($a_xml_parser,'handlerCharacterData');
24 }

Field Documentation

◆ $cdata

ilTableDataParser::$cdata = ''
protected

Definition at line 10 of file class.ilTableDataParser.php.

Referenced by handlerEndTag().

◆ $table

ilTableDataParser::$table = ''
protected

Definition at line 11 of file class.ilTableDataParser.php.

◆ $values

ilTableDataParser::$values = array()
protected

Definition at line 12 of file class.ilTableDataParser.php.


The documentation for this class was generated from the following file: