ILIAS  release_8 Revision v8.19
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 (string $a_xml_file, ilObjStyleSheet $a_style_obj)
 
 setHandlers ($a_xml_parser)
 set event handler should be overwritten by inherited class private More...
 
 startParsing ()
 start the parser More...
 
 handlerBeginTag ( $a_xml_parser, string $a_name, array $a_attribs)
 
 handlerEndTag ( $a_xml_parser, string $a_name)
 
 handlerCharacterData ( $a_xml_parser, string $a_data)
 
- Public Member Functions inherited from ilSaxParser
 __construct (?string $path_to_file='', ?bool $throw_exception=false)
 
 setXMLContent (string $a_xml_content)
 
 getXMLContent ()
 
 getInputType ()
 
 startParsing ()
 stores xml data in array More...
 
 createParser ()
 
 setHandlers ($a_xml_parser)
 
 parse ($a_xml_parser, $a_fp=null)
 

Protected Member Functions

 trimAndStripAttribs (array $attribs)
 
 trimAndStrip (string $input)
 
- Protected Member Functions inherited from ilSaxParser
 openXMLFile ()
 
 handleError (string $message)
 
 setThrowException (bool $throw_exception)
 

Protected Attributes

string $cdata = ""
 
array $cur_template_classes
 
array $cur_template
 
array $current_tags = []
 
string $current_type = ""
 
string $current_class = ""
 
string $current_tag = ""
 
array $styles
 
ilObjStyleSheet $style_obj
 
ilTree $tree
 
Content ColorManager $color_manager
 
array $chars = []
 
- Protected Attributes inherited from ilSaxParser
ilLanguage $lng = null
 

Additional Inherited Members

- Data Fields inherited from ilSaxParser
string $xml_file
 
bool $throw_exception = false
 

Detailed Description

Style Import Parser.

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

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

Constructor & Destructor Documentation

◆ __construct()

ilStyleImportParser::__construct ( string  $a_xml_file,
ilObjStyleSheet  $a_style_obj 
)

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

References $DIC, $service, ILIAS\GlobalScreen\Provider\__construct(), ilObject\getId(), and ILIAS\Repository\lng().

46  {
47  global $DIC;
48 
49  $this->lng = $DIC->language();
50  $this->tree = $DIC->repositoryTree();
51 
52  $service = $DIC->contentStyle()->internal();
53  $access_manager = $service->domain()->access(0, $DIC->user()->getId());
54  $access_manager->enableWrite(true);
55 
56  $this->color_manager = $service->domain()->color(
57  $a_style_obj->getId(),
58  $access_manager
59  );
60 
61  $this->style_obj = $a_style_obj;
62 
63  parent::__construct($a_xml_file);
64  }
global $DIC
Definition: feed.php:28
__construct(Container $dic, ilPlugin $plugin)
$service
Definition: ltiservices.php:43
+ Here is the call graph for this function:

Member Function Documentation

◆ handlerBeginTag()

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

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

References trimAndStripAttribs().

94  : void {
95  $a_attribs = $this->trimAndStripAttribs($a_attribs);
96  switch ($a_name) {
97  case "Style":
98  $this->current_tag = $a_attribs["Tag"];
99  $this->current_class = $a_attribs["Class"];
100  $this->current_type = $a_attribs["Type"];
101  if ($this->current_class == "PageTitle" && $this->current_type == "page_title" && $this->current_tag == "div") {
102  $this->current_tag = "h1";
103  }
104  if ($this->current_class == "Headline1" && $this->current_tag == "div") {
105  $this->current_tag = "h1";
106  $this->current_type = "heading1";
107  }
108  if ($this->current_class == "Headline2" && $this->current_tag == "div") {
109  $this->current_tag = "h2";
110  $this->current_type = "heading2";
111  }
112  if ($this->current_class == "Headline3" && $this->current_tag == "div") {
113  $this->current_tag = "h3";
114  $this->current_type = "heading3";
115  }
116  $this->current_tags = array();
117  $this->chars[] = array("type" => $this->current_type,
118  "class" => $this->current_class);
119  break;
120 
121  case "StyleParameter":
122  $this->current_tags[] = array(
123  "tag" => $this->current_tag,
124  "class" => $this->current_class,
125  "parameter" => $a_attribs["Name"],
126  "type" => $this->current_type,
127  "value" => $a_attribs["Value"],
128  "custom" => $a_attribs["Custom"] ?? null);
129  break;
130 
131  case "StyleColor":
132  $this->color_manager->addColor($a_attribs["Name"], $a_attribs["Code"]);
133  break;
134 
135  case "StyleTemplate":
136  $this->cur_template = array("type" => $a_attribs["Type"],
137  "name" => $a_attribs["Name"]);
138  $this->cur_template_classes = array();
139  break;
140 
141  case "StyleTemplateClass":
142  $this->cur_template_classes[$a_attribs["ClassType"]] =
143  $a_attribs["Class"];
144  break;
145 
146  }
147  $this->cdata = "";
148  }
+ Here is the call graph for this function:

◆ handlerCharacterData()

ilStyleImportParser::handlerCharacterData (   $a_xml_parser,
string  $a_data 
)

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

182  : void {
183  // i don't know why this is necessary, but
184  // the parser seems to convert "&gt;" to ">" and "&lt;" to "<"
185  // in character data, but we don't want that, because it's the
186  // way we mask user html in our content, so we convert back...
187  $a_data = str_replace("<", "&lt;", $a_data);
188  $a_data = str_replace(">", "&gt;", $a_data);
189 
190  // DELETE WHITESPACES AND NEWLINES OF CHARACTER DATA
191  $a_data = preg_replace("/\n/", "", $a_data);
192  $a_data = preg_replace("/\t+/", "", $a_data);
193  if (!empty($a_data)) {
194  $this->cdata .= $a_data;
195  }
196  }

◆ handlerEndTag()

ilStyleImportParser::handlerEndTag (   $a_xml_parser,
string  $a_name 
)

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

References $current_tags, and trimAndStrip().

153  : void {
154  $this->cdata = $this->trimAndStrip($this->cdata);
155  switch ($a_name) {
156  case "Title":
157  $this->style_obj->setTitle($this->cdata);
158  break;
159 
160  case "Description":
161  $this->style_obj->setDescription($this->cdata);
162  break;
163 
164  case "Style":
165  $this->styles[] = $this->current_tags;
166  break;
167 
168  case "StyleTemplate":
169  $this->style_obj->addTemplate(
170  $this->cur_template["type"],
171  $this->cur_template["name"],
172  $this->cur_template_classes
173  );
174  break;
175 
176  }
177  }
+ 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 72 of file class.ilStyleImportParser.php.

72  : void
73  {
74  xml_set_object($a_xml_parser, $this);
75  xml_set_element_handler($a_xml_parser, 'handlerBeginTag', 'handlerEndTag');
76  xml_set_character_data_handler($a_xml_parser, 'handlerCharacterData');
77  }

◆ startParsing()

ilStyleImportParser::startParsing ( )

start the parser

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

82  : void
83  {
84  $this->styles = array();
85  parent::startParsing();
86  $this->style_obj->setStyle($this->styles);
87  $this->style_obj->setCharacteristics($this->chars);
88  }

◆ trimAndStrip()

ilStyleImportParser::trimAndStrip ( string  $input)
protected

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

References ilUtil\stripSlashes().

Referenced by handlerEndTag(), and trimAndStripAttribs().

207  : string
208  {
209  return ilUtil::stripSlashes(trim($input));
210  }
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
+ 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 198 of file class.ilStyleImportParser.php.

References trimAndStrip().

Referenced by handlerBeginTag().

198  : array
199  {
200  $ret = [];
201  foreach ($attribs as $k => $v) {
202  $ret[$k] = $this->trimAndStrip((string) $v);
203  }
204  return $ret;
205  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $cdata

string ilStyleImportParser::$cdata = ""
protected

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

◆ $chars

array ilStyleImportParser::$chars = []
protected

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

◆ $color_manager

Content ColorManager ilStyleImportParser::$color_manager
protected

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

◆ $cur_template

array ilStyleImportParser::$cur_template
protected

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

◆ $cur_template_classes

array ilStyleImportParser::$cur_template_classes
protected

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

◆ $current_class

string ilStyleImportParser::$current_class = ""
protected

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

◆ $current_tag

string ilStyleImportParser::$current_tag = ""
protected

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

◆ $current_tags

array ilStyleImportParser::$current_tags = []
protected

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

Referenced by handlerEndTag().

◆ $current_type

string ilStyleImportParser::$current_type = ""
protected

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

◆ $style_obj

ilObjStyleSheet ilStyleImportParser::$style_obj
protected

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

◆ $styles

array ilStyleImportParser::$styles
protected

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

◆ $tree

ilTree ilStyleImportParser::$tree
protected

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


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