49 $this->capability_context =
new Context(
52 (
$context === self::CONTEXT_REPOSITORY) ? Context::CONTEXT_REPO : Context::CONTEXT_WORKSPACE
58 $DIC->language()->loadLanguageModule(
'wopi');
66 $DIC[
'static_url.uri_builder']
74 $this->capability_context = $this->capability_context
75 ->withCallingId($this->ref_id ?? 0)
76 ->withObjectId($this->obj_id ?? 0);
90 public function init(): void
92 $this->delete_enabled =
true;
93 $this->cut_enabled =
true;
94 $this->copy_enabled =
true;
95 $this->subscribe_enabled =
true;
96 $this->link_enabled =
true;
97 $this->info_screen_enabled =
false;
99 $this->gui_class_name = ilObjFileGUI::class;
103 if ($this->substitutions->isActive()) {
104 $this->substitutions_enabled =
true;
115 $this->capabilities = $this->capability_builder->get($this->capability_context);
117 $best = $this->capabilities->getBest();
119 foreach ($this->commands as $key => $command) {
120 if ($command[
'cmd'] === $best->getCapability()->value) {
122 $this->commands[$key][
'default'] =
true;
126 return parent::getCommands();
133 $info = $this->file_info->getByObjectId($this->obj_id);
134 $this->capabilities = $this->capability_builder->get($this->capability_context);
136 $needed_capability = Capabilities::fromCommand($cmd);
137 $capability = $this->capabilities->get($needed_capability);
138 if ($capability ===
false || !$capability->isUnlocked()) {
142 switch ($this->context) {
143 case self::CONTEXT_REPOSITORY:
144 return (
string) $capability->getURI();
145 case self::CONTEXT_WORKSPACE:
146 $this->
ctrl->setParameterByClass(ilObjFileGUI::class,
'wsp_id', $this->ref_id);
148 return $this->
ctrl->getLinkTargetByClass(
150 Capabilities::INFO_PAGE->value
157 return parent::getCommandLink($cmd);
165 return $this->file_info->getByObjectId($this->obj_id)->getListTitle();
170 return $this->secure(preg_replace(
'/\.[^.]*$/',
'', $a_title));
177 $info = $this->file_info->getByObjectId($this->obj_id);
179 if ($cmd === Capabilities::DOWNLOAD->value) {
180 return $info->shouldDeliverInline() ?
'_blank' :
'';
196 return $this->file_info->getByObjectId($this->obj_id)->shouldDeliverInline()
197 ? $this->type .
'_inline' 214 $this->capabilities = $this->capability_builder->get($this->capability_context);
216 $props = parent::getProperties();
218 $info = $this->file_info->getByObjectId($this->obj_id);
220 $revision = $info->getVersion();
224 "property" => $DIC->language()->txt(
"type"),
225 "value" => $info->getSuffix(),
226 'propertyNameVisible' =>
false,
231 "property" => $DIC->language()->txt(
"size"),
232 "value" => (string) $info->getFileSize(),
233 'propertyNameVisible' =>
false,
240 if ($this->capabilities->get(Capabilities::MANAGE_VERSIONS)->isUnlocked()) {
242 $value =
"<a href=\"$link\">" . $DIC->language()->txt(
"version") .
": $version</a>";
244 $value = $DIC->language()->txt(
"version") .
": $version";
248 "property" => $DIC->language()->txt(
"version"),
250 "propertyNameVisible" => false
256 "property" => $DIC->language()->txt(
"last_update"),
260 'propertyNameVisible' =>
false,
263 if ($info->getPageCount() !==
null && $info->getPageCount() > 0) {
266 "property" => $DIC->language()->txt(
"page_count"),
267 "value" => $info->getPageCount(),
268 'propertyNameVisible' =>
true,
294 $this->capability_context = $this->capability_context
295 ->withCallingId($ref_id)
296 ->withObjectId(
$obj_id ?? $this->capability_context->getObjectId());
299 if ($this->context !== self::CONTEXT_REPOSITORY && $permission ===
"edit_learning_progress") {
303 $this->capabilities = $this->capability_builder->get($this->capability_context);
305 $capability = Capabilities::fromCommand($cmd);
306 $additional_check = $this->capabilities->get($capability)->isUnlocked();
308 return $additional_check && parent::checkCommandAccess(
getCommandLink(string $cmd)
getIconImageType()
Returns the icon image type.
static _getCommands()
get commands this method returns an array of all possible commands/permission combinations example: $...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
insertCommands()
This methods seems to be called by ItemRenderer
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _shouldDownloadDirectly(int $obj_id)
__construct(int $context=self::CONTEXT_REPOSITORY)
ilObjFileInfoRepository $file_info
CapabilityCollection $capabilities
CapabilityBuilder $capability_builder
trait ilObjFileSecureString
Trait ilObjFileSecureString.
getProperties()
Get item properties.
__construct(Container $dic, ilPlugin $plugin)
Context $capability_context
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
IconDatabaseRepository $icon_repo
getCommandFrame(string $cmd)
stripTitleOfFileExtension(string $a_title)
checkCommandAccess(string $permission, string $cmd, int $ref_id, string $type, ?int $obj_id=null)
getCommandImage($a_cmd)
Get command icon image.
static _getInstanceByObjectType(string $a_type)