ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjFileComponentBuilder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
28 {
29  public function __construct(
30  protected ilLanguage $lng,
31  protected UIServices $ui
32  ) {
33  }
34 
36  string $action,
37  ilObjFile $file,
38  array $version_ids
39  ): Interruptive {
40  $icon = $this->ui->factory()->image()->standard(
41  ilObject::_getIcon($file->getId(), "small", $file->getType()),
42  $this->lng->txt("icon") . " " . $this->lng->txt("obj_" . $file->getType())
43  );
44 
45  $modal_items = [];
46  foreach ($file->getVersions($version_ids) as $version) {
47  $filename = $version['filename'] ?? $version->getFilename() ?? $file->getTitle();
48  $version_nr = $version['hist_id'] ?? $version->getVersion();
49  $item_title = $filename . " (v" . $version_nr . ")";
50  $modal_items[] = $this->ui->factory()->modal()->interruptiveItem()->standard(
51  (string) $version['hist_entry_id'],
52  $item_title,
53  $icon
54  );
55  }
56 
57  return $this->ui->factory()->modal()->interruptive(
58  $this->lng->txt('delete'),
59  $this->lng->txt('file_confirm_delete_versions'),
60  $action
61  )->withAffectedItems(
62  $modal_items
63  );
64  }
65 
67  string $action,
68  ilObjFile $file,
69  ): Interruptive {
70  $icon = $this->ui->factory()->image()->standard(
71  ilObject::_getIcon($file->getId(), "small", $file->getType()),
72  $this->lng->txt("icon") . " " . $this->lng->txt("obj_" . $file->getType())
73  );
74 
75  return $this->ui->factory()->modal()->interruptive(
76  $this->lng->txt('delete'),
77  $this->lng->txt('file_confirm_delete_all_versions'),
78  $action
79  )->withAffectedItems(
80  [
81  $this->ui->factory()->modal()->interruptiveItem()->standard(
82  (string) $file->getRefId(),
83  $file->getTitle(),
84  $icon
85  )
86  ]
87  );
88  }
89 }
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
$version
Definition: plugin.php:24
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildConfirmDeleteAllVersionsModal(string $action, ilObjFile $file,)
Provides fluid interface to RBAC services.
Definition: UIServices.php:24
__construct(protected ilLanguage $lng, protected UIServices $ui)
Class ilObjFile.
buildConfirmDeleteSpecificVersionsModal(string $action, ilObjFile $file, array $version_ids)
$filename
Definition: buildRTE.php:78
global $lng
Definition: privfeed.php:31
getVersions($version_ids=null)