ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilRTE.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 class ilRTE
30 {
33  protected ilObjUser $user;
34  protected ilLanguage $lng;
37  protected ?int $initialWidth = null;
38 
43  protected ?string $root_block_element = null;
44 
46  protected array $plugins = [];
47 
49  protected array $buttons = [];
50 
55  protected array $disabled_buttons = [];
56 
57  public function __construct()
58  {
59  global $DIC;
60 
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'];
67  }
68 
69  public function addPlugin(string $a_plugin_name): void
70  {
71  $this->plugins[] = $a_plugin_name;
72  }
73 
74  public function addButton(string $a_button_name): void
75  {
76  $this->buttons[] = $a_button_name;
77  }
78 
79  public function removePlugin(string $a_plugin_name): void
80  {
81  $key = array_search($a_plugin_name, $this->plugins, true);
82  if ($key !== false) {
83  unset($this->plugins[$key]);
84  }
85  }
86 
87  public function removeAllPlugins(): void
88  {
89  foreach ($this->plugins as $plugin) {
90  $this->removePlugin($plugin);
91  }
92  }
93 
94  public function removeButton(string $a_button_name): void
95  {
96  $key = array_search($a_button_name, $this->buttons, true);
97  if ($key !== false) {
98  unset($this->buttons[$key]);
99  }
100  }
101 
102  public function addRTESupport(
103  int $obj_id,
104  string $obj_type,
105  string $a_module = '',
106  bool $allowFormElements = false,
107  ?string $cfg_template = null
108  ): void {
109  }
110 
111  public function addUserTextEditor(string $editor_selector): void
112  {
113  }
114 
121  public function addCustomRTESupport(int $obj_id, string $obj_type, array $tags): void
122  {
123  }
124 
125  public static function _getRTEClassname(): string
126  {
128  if (strtolower($editor) === 'tinymce') {
129  return ilTinyMCE::class;
130  }
131 
132  return self::class;
133  }
134 
141  public static function _cleanupMediaObjectUsage(string $a_text, string $a_usage_type, int $a_usage_id): void
142  {
143  $mobs = ilObjMediaObject::_getMobsOfObject($a_usage_type, $a_usage_id);
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];
147 
148  if (!in_array($found_mob_id, $mobs, true) && ilObjMediaObject::_exists($found_mob_id)) {
149  // save usage if missing
150  ilObjMediaObject::_saveUsage($found_mob_id, $a_usage_type, $a_usage_id);
151  } else {
152  // if already saved everything ok -> take mob out of mobs array
153  unset($mobs[$found_mob_id]);
154  }
155  }
156  // remaining usages are not in text anymore -> delete them
157  // and media objects (note: delete method of ilObjMediaObject
158  // checks whether object is used in another context; if yes,
159  // the object is not deleted!)
160  foreach ($mobs as $mob) {
161  ilObjMediaObject::_removeUsage($mob, $a_usage_type, $a_usage_id);
162  $mob_obj = new ilObjMediaObject($mob);
163  $mob_obj->delete();
164  }
165  }
166 
174  public static function _replaceMediaObjectImageSrc(
175  string $a_text,
176  int $a_direction = 0,
177  string $nic = ''
178  ): string {
179  if ($a_text === '') {
180  return '';
181  }
182 
183  if ($nic === '' && defined('IL_INST_ID')) {
184  $nic = (string) IL_INST_ID;
185  }
186 
187  if ($a_direction === 0) {
188  $a_text = preg_replace(
189  '/src=".*" data-id="([0-9]+)"/',
190  'src="il_' . $nic . '_mob_\\1"',
191  $a_text
192  );
193  } else {
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) {
197  if (ilObject::_lookupType((int) $mob) === 'mob') {
198  $mob_obj = new ilObjMediaObject((int) $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);
201  }
202  }
203  }
204  $a_text = $resulttext;
205  }
206 
207  return $a_text;
208  }
209 
216  public static function _getMediaObjects(string $a_text, int $a_direction = 0): array
217  {
218  if ($a_text === '') {
219  return [];
220  }
221 
222  $mediaObjects = [];
223  if ($a_direction === 0) {
224  $is_matching = preg_match_all('/src=".*" data-id="([0-9]+)"/', $a_text, $matches);
225  } else {
226  $is_matching = preg_match_all('/src="il_[0-9]+_mob_([0-9]+)"/', $a_text, $matches);
227  }
228 
229  if ($is_matching) {
230  foreach ($matches[1] as $mob) {
231  $mob = (int) $mob;
232 
233  if (ilObjMediaObject::_exists($mob) && !in_array($mob, $mediaObjects, true)) {
234  $mediaObjects[] = $mob;
235  }
236  }
237  }
238 
239  return $mediaObjects;
240  }
241 
242  public function setRTERootBlockElement(?string $a_root_block_element): self
243  {
244  $this->root_block_element = $a_root_block_element;
245  return $this;
246  }
247 
248  public function getRTERootBlockElement(): ?string
249  {
251  }
252 
258  public function disableButtons($a_button): self
259  {
260  if (is_array($a_button)) {
261  $this->disabled_buttons = array_unique(array_merge($this->disabled_buttons, $a_button));
262  } else {
263  $this->disabled_buttons = array_unique(array_merge($this->disabled_buttons, [$a_button]));
264  }
265 
266  return $this;
267  }
268 
274  public function getDisabledButtons(bool $as_list = true)
275  {
276  if (!$as_list) {
277  return implode(',', $this->disabled_buttons);
278  }
279 
281  }
282 
283  public function getInitialWidth(): ?int
284  {
285  return $this->initialWidth;
286  }
287 
288  public function setInitialWidth(?int $initialWidth): void
289  {
290  $this->initialWidth = $initialWidth;
291  }
292 }
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()
__construct()
Definition: class.ilRTE.php:57
const IL_INST_ID
Definition: constants.php:40
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)
Definition: class.ilRTE.php:69
int $initialWidth
Definition: class.ilRTE.php:37
array $disabled_buttons
Definition: class.ilRTE.php:55
disableButtons($a_button)
Sets buttons which should be disabled in the RTE.
removePlugin(string $a_plugin_name)
Definition: class.ilRTE.php:79
removeAllPlugins()
Definition: class.ilRTE.php:87
static _saveUsage(int $a_mob_id, string $a_type, int $a_id, int $a_usage_hist_nr=0, string $a_lang="-")
Save usage of mob within another container (e.g.
AgentDetermination $browser
Definition: class.ilRTE.php:35
addCustomRTESupport(int $obj_id, string $obj_type, array $tags)
Adds custom support for an RTE in an ILIAS form.
ilLanguage $lng
Definition: class.ilRTE.php:34
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.
array $buttons
Definition: class.ilRTE.php:49
getInitialWidth()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilIniFile $client_init
Definition: class.ilRTE.php:36
string $root_block_element
Definition: class.ilRTE.php:43
addUserTextEditor(string $editor_selector)
Rich Text Editor base class This class provides access methods to a Rich Text Editor (RTE) integrated...
Definition: class.ilRTE.php:29
ilObjUser $user
Definition: class.ilRTE.php:33
global $DIC
Definition: shib_login.php:22
addRTESupport(int $obj_id, string $obj_type, string $a_module='', bool $allowFormElements=false, ?string $cfg_template=null)
static _exists(int $id, bool $reference=false, ?string $type=null)
setInitialWidth(?int $initialWidth)
static _getMobsOfObject(string $a_type, int $a_id, int $a_usage_hist_nr=0, string $a_lang="-")
ilCtrlInterface $ctrl
Definition: class.ilRTE.php:32
static _removeUsage(int $a_mob_id, string $a_type, int $a_id, int $a_usage_hist_nr=0, string $a_lang="-")
Remove usage of mob in another container.
getDisabledButtons(bool $as_list=true)
Returns the disabled RTE buttons.
getRTERootBlockElement()
setRTERootBlockElement(?string $a_root_block_element)
addButton(string $a_button_name)
Definition: class.ilRTE.php:74
removeButton(string $a_button_name)
Definition: class.ilRTE.php:94
ilGlobalTemplateInterface $tpl
Definition: class.ilRTE.php:31
static _lookupType(int $id, bool $reference=false)
array $plugins
Definition: class.ilRTE.php:46