ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
ilStyleImportParser Class Reference

Style Import Parser. More...

+ Inheritance diagram for ilStyleImportParser:
+ Collaboration diagram for ilStyleImportParser:

Public Member Functions

 __construct ($a_xml_file, &$a_style_obj)
 Constructor. More...
 
 setHandlers ($a_xml_parser)
 set event handler should be overwritten by inherited class @access private More...
 
 startParsing ()
 start the parser More...
 
 handlerBeginTag ($a_xml_parser, $a_name, $a_attribs)
 handler for begin of element More...
 
 handlerEndTag ($a_xml_parser, $a_name)
 handler for end of element More...
 
 handlerCharacterData ($a_xml_parser, $a_data)
 handler for character data More...
 
- Public Member Functions inherited from ilSaxParser
 __construct ($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
 __construct ($error_class=null)
 Constructor. More...
 
 _PEAR ()
 Destructor (the emulated type of...). 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...
 
 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

 $tree
 

Additional Inherited Members

- Static Public Member Functions inherited from PEAR
static & 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...
 
static setErrorHandling ($mode=null, $options=null)
 Sets how errors generated by this object should be handled. More...
 
- 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

Style Import Parser.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 16 of file class.ilStyleImportParser.php.

Constructor & Destructor Documentation

◆ __construct()

ilStyleImportParser::__construct (   $a_xml_file,
$a_style_obj 
)

Constructor.

Parameters
string$a_xml_filexml file
int$a_modeIL_EXTRACT_ROLES | IL_USER_IMPORT

@access public

Definition at line 32 of file class.ilStyleImportParser.php.

33 {
34 global $DIC;
35
36 $this->lng = $DIC->language();
37 $this->tree = $DIC->repositoryTree();
38 $lng = $DIC->language();
39 $tree = $DIC->repositoryTree();
40
41 $this->style_obj = $a_style_obj;
42
43 parent::__construct($a_xml_file);
44 }
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
$DIC
Definition: xapitoken.php:46

References $DIC, ilSaxParser\$lng, $tree, and ILIAS\GlobalScreen\Provider\__construct().

+ Here is the call graph for this function:

Member Function Documentation

◆ handlerBeginTag()

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

handler for begin of element

Definition at line 74 of file class.ilStyleImportParser.php.

75 {
76 switch ($a_name) {
77 case "Style":
78 $this->current_tag = $a_attribs["Tag"];
79 $this->current_class = $a_attribs["Class"];
80 $this->current_type = $a_attribs["Type"];
81 if ($this->current_class == "PageTitle" && $this->current_type == "page_title" && $this->current_tag == "div") {
82 $this->current_tag = "h1";
83 }
84 if ($this->current_class == "Headline1" && $this->current_tag == "div") {
85 $this->current_tag = "h1";
86 $this->current_type = "heading1";
87 }
88 if ($this->current_class == "Headline2" && $this->current_tag == "div") {
89 $this->current_tag = "h2";
90 $this->current_type = "heading2";
91 }
92 if ($this->current_class == "Headline3" && $this->current_tag == "div") {
93 $this->current_tag = "h3";
94 $this->current_type = "heading3";
95 }
96 $this->current_tags = array();
97 $this->chars[] = array("type" => $this->current_type,
98 "class" => $this->current_class);
99 break;
100
101 case "StyleParameter":
102 $this->current_tags[] = array(
103 "tag" => $this->current_tag,
104 "class" => $this->current_class,
105 "parameter" => $a_attribs["Name"],
106 "type" => $this->current_type,
107 "value" => $a_attribs["Value"],
108 "custom" => $a_attribs["Custom"]);
109 break;
110
111 case "StyleColor":
112 $this->style_obj->addColor($a_attribs["Name"], $a_attribs["Code"]);
113 break;
114
115 case "StyleTemplate":
116 $this->cur_template = array("type" => $a_attribs["Type"],
117 "name" => $a_attribs["Name"]);
118 $this->cur_template_classes = array();
119 break;
120
121 case "StyleTemplateClass":
122 $this->cur_template_classes[$a_attribs["ClassType"]] =
123 $a_attribs["Class"];
124 break;
125
126 }
127 $this->cdata = "";
128 }

◆ handlerCharacterData()

ilStyleImportParser::handlerCharacterData (   $a_xml_parser,
  $a_data 
)

handler for character data

Definition at line 163 of file class.ilStyleImportParser.php.

164 {
165 // i don't know why this is necessary, but
166 // the parser seems to convert "&gt;" to ">" and "&lt;" to "<"
167 // in character data, but we don't want that, because it's the
168 // way we mask user html in our content, so we convert back...
169 $a_data = str_replace("<", "&lt;", $a_data);
170 $a_data = str_replace(">", "&gt;", $a_data);
171
172 // DELETE WHITESPACES AND NEWLINES OF CHARACTER DATA
173 $a_data = preg_replace("/\n/", "", $a_data);
174 $a_data = preg_replace("/\t+/", "", $a_data);
175 if (!empty($a_data)) {
176 $this->cdata .= $a_data;
177 }
178 }

◆ handlerEndTag()

ilStyleImportParser::handlerEndTag (   $a_xml_parser,
  $a_name 
)

handler for end of element

Definition at line 134 of file class.ilStyleImportParser.php.

135 {
136 switch ($a_name) {
137 case "Title":
138 $this->style_obj->setTitle($this->cdata);
139 break;
140
141 case "Description":
142 $this->style_obj->setDescription($this->cdata);
143 break;
144
145 case "Style":
146 $this->styles[] = $this->current_tags;
147 break;
148
149 case "StyleTemplate":
150 $this->style_obj->addTemplate(
151 $this->cur_template["type"],
152 $this->cur_template["name"],
153 $this->cur_template_classes
154 );
155 break;
156
157 }
158 }

◆ setHandlers()

ilStyleImportParser::setHandlers (   $a_xml_parser)

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

Reimplemented from ilSaxParser.

Definition at line 52 of file class.ilStyleImportParser.php.

53 {
54 xml_set_object($a_xml_parser, $this);
55 xml_set_element_handler($a_xml_parser, 'handlerBeginTag', 'handlerEndTag');
56 xml_set_character_data_handler($a_xml_parser, 'handlerCharacterData');
57 }

◆ startParsing()

ilStyleImportParser::startParsing ( )

start the parser

Reimplemented from ilSaxParser.

Definition at line 62 of file class.ilStyleImportParser.php.

63 {
64 $this->styles = array();
65 parent::startParsing();
66 $this->style_obj->setStyle($this->styles);
67 $this->style_obj->setCharacteristics($this->chars);
68 }

Field Documentation

◆ $tree

ilStyleImportParser::$tree
protected

Definition at line 21 of file class.ilStyleImportParser.php.

Referenced by __construct().


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