ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
TextDocumentProcessor.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\WebDAV\Mount;
22
24{
25 public function processMountInstructions(string $a_raw_mount_instructions): array
26 {
27 $stripped_instructions = htmlspecialchars($a_raw_mount_instructions);
28 $stripped_instructions = nl2br($stripped_instructions);
29
30 return $this->parseInstructionsToAssocArray($stripped_instructions);
31 }
32}
parseInstructionsToAssocArray(string $a_raw_mount_instructions)
processMountInstructions(string $a_raw_mount_instructions)