19 declare(strict_types=1);
38 private bool $reset_default =
false,
39 private bool $reset_all =
false 59 return "Creation of the default icons for file objects.";
97 $scan_result = scandir(self::PATH_DEFAULT_ICON_DIR);
98 $default_icon_filenames = preg_grep(
"/^icon_file_/", $scan_result);
99 foreach ($default_icon_filenames as $default_icon_filename) {
100 $icon_file_prefix =
"icon_file_";
101 $icon_file_suffix =
".svg";
102 $suffix = str_replace($icon_file_prefix,
"", $default_icon_filename);
103 $suffix = str_replace($icon_file_suffix,
"", $suffix);
110 $statement =
$db->queryF(
115 $num_matches =
$db->numRows($statement);
118 if ($num_matches > 0) {
122 $path_default_file_icon = self::PATH_DEFAULT_ICON_DIR . $default_icon_filename;
125 $resource_identification = $helper->movePathToStorage(
126 $path_default_file_icon,
133 if ($resource_identification ===
null) {
136 $rid = $resource_identification->serialize();
169 if ($this->reset_all) {
191 $statement =
$db->query($query);
193 while ($row =
$db->fetchAssoc($statement)) {
209 $statement =
$db->query($query);
211 while ($row =
$db->fetchAssoc($statement)) {
225 if (!empty($suffixes)) {
233 $statement =
$db->query($query);
235 while ($row =
$db->fetchAssoc($statement)) {
263 $scan_result = scandir(self::PATH_DEFAULT_ICON_DIR);
264 $num_default_icons_in_dir = is_countable(preg_grep(
"/^icon_file_/", $scan_result)) ? count(
265 preg_grep(
"/^icon_file_/", $scan_result)
269 $statement =
$db->query($query);
270 $num_default_icons_in_db =
$db->numRows($statement);
272 if ($num_default_icons_in_db < $num_default_icons_in_dir) {
An objective is a desired state of the system that is supposed to be created by the setup...
isApplicable(Environment $environment)
Get to know whether the objective is applicable.
const PATH_DEFAULT_ICON_DIR
const ICON_RESOURCE_IDENTIFICATION
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
achieve(Environment $environment)
Objectives can be achieved.
getPreconditions(Environment $environment)
An environment holds resources to be used in the setup process.
__construct(private bool $reset_default=false, private bool $reset_all=false)
static getPreconditions()