19 declare(strict_types=1);
60 switch ($this->code) {
61 case self::EMPTY_ENTRY:
64 case self::PARSING_JSON_FAILED:
67 case self::INVALID_MANDATORY_ENTRY_ATTRIBUTE:
68 $this->message =
'Invalid mandatory entry Attribute: ' .
$this->add_info;
70 case self::DUPLICATE_ENTRY:
71 $this->message =
'There are entries with the same ID. Duplicate: ' .
$this->add_info;
73 case self::DUPLICATE_ROOT_ENTRY:
74 $this->message =
'There are multiple root entry. Duplicate: ' .
$this->add_info;
76 case self::INVALID_ID:
77 $this->message =
'No such ID found in list or tree: ' .
$this->add_info;
79 case self::INVALID_CHARACTERS_IN_ID:
80 $this->message =
'The ID given contains invalid characters: ' .
$this->add_info;
82 case self::INVALID_FILE_PATH:
83 $this->message =
'Invalid file path or file not readable: ' .
$this->add_info;
85 case self::FILE_CREATION_FAILED:
88 case self::FOLDER_CREATION_FAILED:
91 case self::FOLDER_DELETION_FAILED:
94 case self::FILE_DELETION_FAILED:
97 case self::LESS_COMPILE_FAILED:
100 case self::FILE_OPENING_FAILED:
103 case self::SKIN_CSS_DOES_NOT_EXIST:
106 case self::SKIN_FOLDER_DOES_NOT_EXIST:
109 case self::INVALID_RULES_ENTRY:
112 case self::NO_STYLE_ID:
113 $this->message =
'No Style ID is given.';
115 case self::NO_SKIN_ID:
116 $this->message =
'No Skin ID is given.';
118 case self::NOT_EXISTING_SKIN:
121 case self::NOT_EXISTING_STYLE:
124 case self::SKIN_ALREADY_EXISTS:
127 case self::NO_PARENT_STYLE:
128 $this->message =
'No parent style defined for style: ' .
$this->add_info;
130 case self::SUBSTYLE_ASSIGNMENT_EXISTS:
131 $this->message =
'The assignment of this substyle already exists: ' .
$this->add_info;
133 case self::LESSC_NOT_INSTALLED:
134 $this->message =
'No less compiler is installed';
const SKIN_ALREADY_EXISTS
const LESSC_NOT_INSTALLED
const FOLDER_DELETION_FAILED
const PARSING_JSON_FAILED
const SUBSTYLE_ASSIGNMENT_EXISTS
const FOLDER_CREATION_FAILED
const DUPLICATE_ROOT_ENTRY
const FILE_CREATION_FAILED
const SKIN_FOLDER_DOES_NOT_EXIST
const INVALID_CHARACTERS_IN_ID
const FILE_DELETION_FAILED
const FILE_OPENING_FAILED
const SKIN_CSS_DOES_NOT_EXIST
const LESS_COMPILE_FAILED
const INVALID_MANDATORY_ENTRY_ATTRIBUTE
const INVALID_RULES_ENTRY
Class for advanced editing exception handling in ILIAS.