ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilModuleReader Class Reference

Class ilModuleReader. More...

+ Inheritance diagram for ilModuleReader:
+ Collaboration diagram for ilModuleReader:

Public Member Functions

 ilModuleReader ($a_path, $a_name, $a_type)
 getModules ()
 setHandlers ($a_xml_parser)
 set event handler should be overwritten by inherited class private
 clearTables ()
 clear the tables
 handlerBeginTag ($a_xml_parser, $a_name, $a_attribs)
 start tag handler
 handlerEndTag ($a_xml_parser, $a_name)
 end tag handler
 handlerCharacterData ($a_xml_parser, $a_data)
 end tag handler
- Public Member Functions inherited from ilObjDefReader
 ilObjDefReader ($a_path, $a_name, $a_type)
- Public Member Functions inherited from ilSaxParser
 ilSaxParser ($a_xml_file= '', $throwException=false)
 Constructor setup ILIAS global object public.
 setXMLContent ($a_xml_content)
 getXMLContent ()
 getInputType ()
 startParsing ()
 stores xml data in array
 createParser ()
 create parser
 setOptions ($a_xml_parser)
 set parser options
 openXMLFile ()
 open xml file
 parse ($a_xml_parser, $a_fp=null)
 parse xml file
 freeParser ($a_xml_parser)
 free xml parser handle
 setThrowException ($throwException)
 set error handling
- Public Member Functions inherited from PEAR
 PEAR ($error_class=null)
 Constructor.
 _PEAR ()
 Destructor (the emulated type of...).
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.
 registerShutdownFunc ($func, $args=array())
 Use this function to register a shutdown method for static classes.
 isError ($data, $code=null)
 Tell whether a value is a PEAR error.
 setErrorHandling ($mode=null, $options=null)
 Sets how errors generated by this object should be handled.
 expectError ($code= '*')
 This method is used to tell which errors you expect to get.
 popExpect ()
 This method pops one element off the expected error codes stack.
 _checkDelExpect ($error_code)
 This method checks unsets an error code if available.
 delExpect ($error_code)
 This method deletes all occurences of the specified element from the expected error codes stack.
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.
throwError ($message=null, $code=null, $userinfo=null)
 Simpler form of raiseError with fewer options.
 staticPushErrorHandling ($mode, $options=null)
 staticPopErrorHandling ()
 pushErrorHandling ($mode, $options=null)
 Push a new error handler on top of the error handler options stack.
 popErrorHandling ()
 Pop the last error handler used.
 loadExtension ($ext)
 OS independant PHP extension load.

Additional Inherited Members

- Static Public Member Functions inherited from ilObjDefReader
static deleteObjectDefinition ($a_id)
 Delete an object definition (this is currently needed for test cases)
- Data Fields inherited from ilSaxParser
 $input_type = null
 $xml_content = ''
 $ilias
 $lng
 $xml_file
 $throwException = false
- Protected Member Functions inherited from ilSaxParser
 handleError ($message, $code)
 use given error handler to handle error message or internal ilias error message handle
- Protected Attributes inherited from ilObjDefReader
 $readers
 $current_reader = null

Detailed Description

Class ilModuleReader.

Reads reads module information of modules.xml files into db

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
Id:
class.ilModuleReader.php 43440 2013-07-16 10:35:39Z akill

Definition at line 35 of file class.ilModuleReader.php.

Member Function Documentation

ilModuleReader::clearTables ( )

clear the tables

Reimplemented from ilObjDefReader.

Definition at line 59 of file class.ilModuleReader.php.

References $ilDB.

{
global $ilDB;
// only this one clears parents tables (not service reader)
$ilDB->manipulate("DELETE FROM module_class");
}
ilModuleReader::getModules ( )

Definition at line 43 of file class.ilModuleReader.php.

References ilSaxParser\startParsing().

{
$this->startParsing();
}

+ Here is the call graph for this function:

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

start tag handler

Parameters
ressouceinternal xml_parser_handler
stringelement tag name
arrayelement attributes private

Reimplemented from ilObjDefReader.

Definition at line 78 of file class.ilModuleReader.php.

References $ilDB.

{
global $ilDB;
parent::handlerBeginTag($a_xml_parser,$a_name,$a_attribs);
switch ($a_name)
{
case 'module':
$this->current_module = $this->name;
$this->current_component = $this->type."/".$this->name;
$ilDB->manipulateF("INSERT INTO il_component (type, name, id) ".
"VALUES (%s,%s,%s)", array("text", "text", "text"),
array($this->type, $this->name, $a_attribs["id"]));
break;
case 'baseclass':
$ilDB->manipulateF("INSERT INTO module_class (module, class, dir) ".
"VALUES (%s,%s,%s)", array("text", "text", "text"),
array($this->name, $a_attribs["name"], $a_attribs["dir"]));
break;
}
}
ilModuleReader::handlerCharacterData (   $a_xml_parser,
  $a_data 
)

end tag handler

Parameters
ressouceinternal xml_parser_handler
stringdata private

Reimplemented from ilObjDefReader.

Definition at line 123 of file class.ilModuleReader.php.

{
parent::handlerCharacterData($a_xml_parser,$a_data);
// DELETE WHITESPACES AND NEWLINES OF CHARACTER DATA
$a_data = preg_replace("/\n/","",$a_data);
$a_data = preg_replace("/\t+/","",$a_data);
if (!empty($a_data))
{
switch ($this->current_tag)
{
case '':
}
}
}
ilModuleReader::handlerEndTag (   $a_xml_parser,
  $a_name 
)

end tag handler

Parameters
ressouceinternal xml_parser_handler
stringelement tag name private

Reimplemented from ilObjDefReader.

Definition at line 110 of file class.ilModuleReader.php.

{
parent::handlerEndTag($a_xml_parser,$a_name);
}
ilModuleReader::ilModuleReader (   $a_path,
  $a_name,
  $a_type 
)

Definition at line 38 of file class.ilModuleReader.php.

References ilObjDefReader\ilObjDefReader().

{
parent::ilObjDefReader($a_path, $a_name, $a_type);
}

+ Here is the call graph for this function:

ilModuleReader::setHandlers (   $a_xml_parser)

set event handler should be overwritten by inherited class private

Reimplemented from ilObjDefReader.

Definition at line 48 of file class.ilModuleReader.php.

{
xml_set_object($a_xml_parser,$this);
xml_set_element_handler($a_xml_parser,'handlerBeginTag','handlerEndTag');
xml_set_character_data_handler($a_xml_parser,'handlerCharacterData');
}

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