ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
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 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 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 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 Member Functions

 trimAndStripAttribs (array $attribs)
 
 trimAndStrip (string $input)
 
- Protected Member Functions inherited from ilSaxParser
 handleError ($message, $code)
 use given error handler to handle error message or internal ilias error message handle 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()
 

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

public

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

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

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  }
global $DIC
Definition: goto.php:24
__construct(Container $dic, ilPlugin $plugin)
+ 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.

References trimAndStripAttribs().

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

◆ handlerCharacterData()

ilStyleImportParser::handlerCharacterData (   $a_xml_parser,
  $a_data 
)

handler for character data

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

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

◆ handlerEndTag()

ilStyleImportParser::handlerEndTag (   $a_xml_parser,
  $a_name 
)

handler for end of element

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

References trimAndStrip().

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

◆ setHandlers()

ilStyleImportParser::setHandlers (   $a_xml_parser)

set event handler should be overwritten by inherited class private

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

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  }

◆ trimAndStrip()

ilStyleImportParser::trimAndStrip ( string  $input)
protected

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

References ilUtil\stripSlashes().

Referenced by handlerEndTag(), and trimAndStripAttribs().

191  : string
192  {
193  return ilUtil::stripSlashes(trim($input));
194  }
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ trimAndStripAttribs()

ilStyleImportParser::trimAndStripAttribs ( array  $attribs)
protected

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

References $ret, and trimAndStrip().

Referenced by handlerBeginTag().

182  : array
183  {
184  $ret = [];
185  foreach ($attribs as $k => $v) {
186  $ret[$k] = $this->trimAndStrip((string) $v);
187  }
188  return $ret;
189  }
$ret
Definition: parser.php:6
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

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: