6 require_once(
"./Services/Xml/classes/class.ilSaxParser.php");
36 $this->lng = $DIC->language();
37 $this->tree = $DIC->repositoryTree();
38 $lng = $DIC->language();
39 $tree = $DIC->repositoryTree();
41 $this->style_obj = $a_style_obj;
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');
64 $this->styles = array();
65 parent::startParsing();
66 $this->style_obj->setStyle($this->styles);
67 $this->style_obj->setCharacteristics($this->chars);
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";
85 if ($this->current_class ==
"Headline1" && $this->current_tag ==
"div") {
86 $this->current_tag =
"h1";
87 $this->current_type =
"heading1";
89 if ($this->current_class ==
"Headline2" && $this->current_tag ==
"div") {
90 $this->current_tag =
"h2";
91 $this->current_type =
"heading2";
93 if ($this->current_class ==
"Headline3" && $this->current_tag ==
"div") {
94 $this->current_tag =
"h3";
95 $this->current_type =
"heading3";
97 $this->current_tags = array();
98 $this->chars[] = array(
"type" => $this->current_type,
99 "class" => $this->current_class);
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"]);
113 $this->style_obj->addColor($a_attribs[
"Name"], $a_attribs[
"Code"]);
116 case "StyleTemplate":
117 $this->cur_template = array(
"type" => $a_attribs[
"Type"],
118 "name" => $a_attribs[
"Name"]);
119 $this->cur_template_classes = array();
122 case "StyleTemplateClass":
123 $this->cur_template_classes[$a_attribs[
"ClassType"]] =
140 $this->style_obj->setTitle($this->cdata);
144 $this->style_obj->setDescription($this->cdata);
148 $this->styles[] = $this->current_tags;
151 case "StyleTemplate":
152 $this->style_obj->addTemplate(
153 $this->cur_template[
"type"],
154 $this->cur_template[
"name"],
155 $this->cur_template_classes
171 $a_data = str_replace(
"<",
"<", $a_data);
172 $a_data = str_replace(
">",
">", $a_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;
185 foreach ($attribs as $k => $v) {
trimAndStrip(string $input)
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element
startParsing()
start the parser
setHandlers($a_xml_parser)
set event handler should be overwritten by inherited class private
Base class for sax-based expat parsing extended classes need to overwrite the method setHandlers and ...
__construct($a_xml_file, &$a_style_obj)
Constructor.
trimAndStripAttribs(array $attribs)
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
handlerCharacterData($a_xml_parser, $a_data)
handler for character data
__construct(Container $dic, ilPlugin $plugin)
handlerEndTag($a_xml_parser, $a_name)
handler for end of element