ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjAdvancedEditing.php
Go to the documentation of this file.
1 <?php
2 
25 {
27 
28  public function __construct(
29  int $a_id = 0,
30  bool $a_call_by_reference = true
31  ) {
32  global $DIC;
33 
34  $this->lng = $DIC->language();
35  $this->setting = new ilSetting("advanced_editing");
36  $this->type = "adve";
37  parent::__construct($a_id, $a_call_by_reference);
38  }
39 
45  public static function _getUsedHTMLTags(string $a_module = ""): array
46  {
47  $setting = new ilSetting("advanced_editing");
48  $tags = $setting->get("advanced_editing_used_html_tags_" . $a_module, '');
49  if ($tags !== '') {
50  $usedtags = unserialize($tags, ["allowed_classes" => false]);
51  } elseif ($a_module === 'frm_post' || $a_module === 'exc_ass') {
52  $usedtags = array(
53  "a",
54  "blockquote",
55  "br",
56  "code",
57  "div",
58  "em",
59  "img",
60  "li",
61  "ol",
62  "p",
63  "strong",
64  "u",
65  "ul",
66  "span"
67  );
68  } else {
69  // default: everything but tables
70  $usedtags = array(
71  "a",
72  "blockquote",
73  "br",
74  "cite",
75  "code",
76  "dd",
77  "div",
78  "dl",
79  "dt",
80  "em",
81  "h1",
82  "h2",
83  "h3",
84  "h4",
85  "h5",
86  "h6",
87  "hr",
88  "img",
89  "li",
90  "ol",
91  "p",
92  "pre",
93  "span",
94  "strike",
95  "strong",
96  "sub",
97  "sup",
98  "u",
99  "ul"
100  );
101  }
102 
103  // frm_posts need blockquote and div urgently
104  if ($a_module === 'frm_post') {
105  if (!in_array('div', $usedtags, true)) {
106  $usedtags[] = 'div';
107  }
108 
109  if (!in_array('blockquote', $usedtags, true)) {
110  $usedtags[] = 'blockquote';
111  }
112  }
113 
114  return $usedtags;
115  }
116 
122  public static function _getUsedHTMLTagsAsString(string $a_module = ""): string
123  {
124  $result = "";
125  $tags = self::_getUsedHTMLTags($a_module);
126  foreach ($tags as $tag) {
127  $result .= "<$tag>";
128  }
129  return $result;
130  }
131 
136  public static function _getRichTextEditor(): string
137  {
138  return (new ilSetting("advanced_editing"))->get("advanced_editing_javascript_editor", "0");
139  }
140 
141  public function setRichTextEditor(string $a_js_editor): void
142  {
143  $setting = new ilSetting("advanced_editing");
144  $setting->set("advanced_editing_javascript_editor", $a_js_editor);
145  }
146 
153  public function setUsedHTMLTags(
154  array $a_html_tags,
155  string $a_module
156  ): void {
157  $lng = $this->lng;
158 
159  if ($a_module !== '') {
160  $auto_added_tags = array();
161 
162  // frm_posts need blockquote and div urgently
163  if ($a_module === 'frm_post') {
164  if (!in_array('div', $a_html_tags, true)) {
165  $auto_added_tags[] = 'div';
166  }
167 
168  if (!in_array('blockquote', $a_html_tags, true)) {
169  $auto_added_tags[] = 'blockquote';
170  }
171  }
172 
173  $setting = new ilSetting("advanced_editing");
174  $setting->set("advanced_editing_used_html_tags_" . $a_module, serialize(array_merge($a_html_tags, $auto_added_tags)));
175 
176  if (count($auto_added_tags)) {
178  sprintf(
179  $lng->txt('advanced_editing_required_tags'),
180  implode(', ', $auto_added_tags)
181  )
182  );
183  }
184  }
185  }
186 
191  public function &getHTMLTags(): array
192  {
193  $tags = array(
194  "a",
195  "blockquote",
196  "br",
197  "cite",
198  "code",
199  "dd",
200  "div",
201  "dl",
202  "dt",
203  "em",
204  "h1",
205  "h2",
206  "h3",
207  "h4",
208  "h5",
209  "h6",
210  "hr",
211  "img",
212  "li",
213  "object",
214  "ol",
215  "p",
216  "param",
217  "pre",
218  "span",
219  "strike",
220  "strong",
221  "sub",
222  "sup",
223  "table",
224  "td",
225  "tr",
226  "u",
227  "ul",
228  "ruby", // Ruby Annotation XHTML module
229  "rbc",
230  "rtc",
231  "rb",
232  "rt",
233  "rp"
234  );
235  return $tags;
236  }
237 
242  public static function _getAllHTMLTags(): array
243  {
244  return array(
245  "a",
246  "abbr",
247  "acronym",
248  "address",
249  "applet",
250  "area",
251  "b",
252  "base",
253  "basefont",
254  "bdo",
255  "big",
256  "blockquote",
257  "br",
258  "button",
259  "caption",
260  "center",
261  "cite",
262  "code",
263  "col",
264  "colgroup",
265  "dd",
266  "del",
267  "dfn",
268  "dir",
269  "div",
270  "dl",
271  "dt",
272  "em",
273  "fieldset",
274  "font",
275  "form",
276  "h1",
277  "h2",
278  "h3",
279  "h4",
280  "h5",
281  "h6",
282  "hr",
283  "i",
284  "iframe",
285  "img",
286  "input",
287  "ins",
288  "isindex",
289  "kbd",
290  "label",
291  "legend",
292  "li",
293  "link",
294  "map",
295  "menu",
296  "object",
297  "ol",
298  "optgroup",
299  "option",
300  "p",
301  "param",
302  "pre",
303  "q",
304  "s",
305  "samp",
306  "select",
307  "small",
308  "span",
309  "strike",
310  "strong",
311  "sub",
312  "sup",
313  "table",
314  "tbody",
315  "td",
316  "textarea",
317  "tfoot",
318  "th",
319  "thead",
320  "tr",
321  "tt",
322  "u",
323  "ul",
324  "var",
325  "ruby", // Ruby Annotation XHTML module
326  "rbc",
327  "rtc",
328  "rb",
329  "rt",
330  "rp"
331  );
332  }
333 
337  public static function _setRichTextEditorUserState(int $a_state): void
338  {
339  global $DIC;
340 
341  $ilUser = $DIC->user();
342  $ilUser->writePref("show_rte", (string) $a_state);
343  }
344 
349  public static function _getRichTextEditorUserState(): int
350  {
351  global $DIC;
352 
353  $ilUser = $DIC->user();
354  if ($ilUser->getPref("show_rte") != '') {
355  return (int) $ilUser->getPref("show_rte");
356  }
357  return 1;
358  }
359 }
get(string $a_keyword, ?string $a_default_value=null)
get setting
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static _getRichTextEditor()
Returns the identifier for the Rich Text Editor.
static _getAllHTMLTags()
Returns an array of all possible HTML tags for text editing.
set(string $a_key, string $a_val)
static _setRichTextEditorUserState(int $a_state)
Sets the state of the rich text editor visibility for the current user.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setUsedHTMLTags(array $a_html_tags, string $a_module)
Writes an array with allowed HTML tags to the ILIAS settings.
ilLanguage $lng
global $DIC
Definition: shib_login.php:22
static _getUsedHTMLTagsAsString(string $a_module="")
Returns a string of all allowed HTML tags for text editing.
& getHTMLTags()
Returns an array of all possible HTML tags for text editing.
__construct(Container $dic, ilPlugin $plugin)
static _getRichTextEditorUserState()
Gets the state of the rich text editor visibility for the current user.
setRichTextEditor(string $a_js_editor)
__construct(int $a_id=0, bool $a_call_by_reference=true)
static _getUsedHTMLTags(string $a_module="")
Returns an array of all allowed HTML tags for text editing.