30 bool $a_call_by_reference =
true 34 $this->
lng = $DIC->language();
35 $this->setting =
new ilSetting(
"advanced_editing");
47 $setting =
new ilSetting(
"advanced_editing");
48 $tags = $setting->
get(
"advanced_editing_used_html_tags_" . $a_module,
'');
50 $usedtags = unserialize($tags, [
"allowed_classes" =>
false]);
51 } elseif ($a_module ===
'frm_post' || $a_module ===
'exc_ass') {
104 if ($a_module ===
'frm_post') {
105 if (!in_array(
'div', $usedtags,
true)) {
109 if (!in_array(
'blockquote', $usedtags,
true)) {
110 $usedtags[] =
'blockquote';
125 $tags = self::_getUsedHTMLTags($a_module);
126 foreach ($tags as $tag) {
138 return (
new ilSetting(
"advanced_editing"))->get(
"advanced_editing_javascript_editor",
"0");
143 $setting =
new ilSetting(
"advanced_editing");
144 $setting->
set(
"advanced_editing_javascript_editor", $a_js_editor);
159 if ($a_module !==
'') {
160 $auto_added_tags = array();
163 if ($a_module ===
'frm_post') {
164 if (!in_array(
'div', $a_html_tags,
true)) {
165 $auto_added_tags[] =
'div';
168 if (!in_array(
'blockquote', $a_html_tags,
true)) {
169 $auto_added_tags[] =
'blockquote';
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)));
176 if (count($auto_added_tags)) {
179 $lng->
txt(
'advanced_editing_required_tags'),
180 implode(
', ', $auto_added_tags)
341 $ilUser = $DIC->user();
342 $ilUser->writePref(
"show_rte", (
string) $a_state);
353 $ilUser = $DIC->user();
354 if ($ilUser->getPref(
"show_rte") !=
'') {
355 return (
int) $ilUser->getPref(
"show_rte");
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.
setUsedHTMLTags(array $a_html_tags, string $a_module)
Writes an array with allowed HTML tags to the ILIAS settings.
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.