19 declare(strict_types=1);
61 $this->tpl = $DIC[
'tpl'];
62 $this->
ctrl = $DIC[
'ilCtrl'];
63 $this->
lng = $DIC[
'lng'];
64 $this->browser = $DIC->http()->agent();
65 $this->client_init = $DIC[
'ilClientIniFile'];
66 $this->
user = $DIC[
'ilUser'];
69 public function addPlugin(
string $a_plugin_name): void
71 $this->plugins[] = $a_plugin_name;
74 public function addButton(
string $a_button_name): void
76 $this->buttons[] = $a_button_name;
81 $key = array_search($a_plugin_name, $this->plugins,
true);
83 unset($this->plugins[$key]);
89 foreach ($this->plugins as
$plugin) {
96 $key = array_search($a_button_name, $this->buttons,
true);
98 unset($this->buttons[$key]);
105 string $a_module =
'',
106 bool $allowFormElements =
false,
107 ?
string $cfg_template =
null 128 if (strtolower($editor) ===
'tinymce') {
129 return ilTinyMCE::class;
144 while (preg_match(
'/src=".*" data-id="([0-9]+)"/', $a_text, $found)) {
145 $a_text = str_replace($found[0],
'', $a_text);
146 $found_mob_id = (
int) $found[1];
153 unset($mobs[$found_mob_id]);
160 foreach ($mobs as $mob) {
176 int $a_direction = 0,
179 if ($a_text ===
'') {
183 if ($nic ===
'' && defined(
'IL_INST_ID')) {
187 if ($a_direction === 0) {
188 $a_text = preg_replace(
189 '/src=".*" data-id="([0-9]+)"/',
190 'src="il_' . $nic .
'_mob_\\1"',
194 $resulttext = $a_text;
195 if (preg_match_all(
'/src="(il_[0-9]+_mob_([0-9]+))"/', $a_text, $matches)) {
196 foreach ($matches[2] as $idx => $mob) {
199 $path_to_file = $mob_obj->getStandardSrc();
200 $resulttext = str_replace(
"src=\"{$matches[1][$idx]}\"",
"src=\"{$path_to_file}\" data-id=\"{$matches[2][$idx]}\"", $resulttext);
204 $a_text = $resulttext;
218 if ($a_text ===
'') {
223 if ($a_direction === 0) {
224 $is_matching = preg_match_all(
'/src=".*" data-id="([0-9]+)"/', $a_text, $matches);
226 $is_matching = preg_match_all(
'/src="il_[0-9]+_mob_([0-9]+)"/', $a_text, $matches);
230 foreach ($matches[1] as $mob) {
234 $mediaObjects[] = $mob;
239 return $mediaObjects;
244 $this->root_block_element = $a_root_block_element;
260 if (is_array($a_button)) {
261 $this->disabled_buttons = array_unique(array_merge($this->disabled_buttons, $a_button));
263 $this->disabled_buttons = array_unique(array_merge($this->disabled_buttons, [$a_button]));
277 return implode(
',', $this->disabled_buttons);
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
static _getMediaObjects(string $a_text, int $a_direction=0)
Returns all media objects found in the passed string.
static _getRTEClassname()
This library is borrowed from the phpGroupWare API http://www.phpgroupware.org/api Modifications made...
static _getRichTextEditor()
Returns the identifier for the Rich Text Editor.
addPlugin(string $a_plugin_name)
disableButtons($a_button)
Sets buttons which should be disabled in the RTE.
removePlugin(string $a_plugin_name)
AgentDetermination $browser
addCustomRTESupport(int $obj_id, string $obj_type, array $tags)
Adds custom support for an RTE in an ILIAS form.
static _cleanupMediaObjectUsage(string $a_text, string $a_usage_type, int $a_usage_id)
Synchronises appearances of media objects in $a_text with media object usage table.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
string $root_block_element
addUserTextEditor(string $editor_selector)
Rich Text Editor base class This class provides access methods to a Rich Text Editor (RTE) integrated...
addRTESupport(int $obj_id, string $obj_type, string $a_module='', bool $allowFormElements=false, ?string $cfg_template=null)
setInitialWidth(?int $initialWidth)
getDisabledButtons(bool $as_list=true)
Returns the disabled RTE buttons.
setRTERootBlockElement(?string $a_root_block_element)
addButton(string $a_button_name)
removeButton(string $a_button_name)
ilGlobalTemplateInterface $tpl
static _lookupType(int $id, bool $reference=false)