60 bool $create_reference =
false 62 $revision = $this->storage->manage()->getCurrentRevision($rid);
64 $file_obj->setResourceId($rid);
65 if ($this->page_counter->isAvailable()) {
66 $file_obj->setPageCount($this->page_counter->extractAmountOfPagesByRID($rid) ?? 0);
69 $file_name = $revision->getInformation()->getTitle();
70 $title = $file_obj->appendSuffixToTitle(
71 empty($options[self::OPTION_FILENAME]) ? $file_name : $options[self::OPTION_FILENAME],
75 $revision->setTitle($title);
76 $this->storage->manage()->updateRevision($revision);
78 if (!$this->policy->isValidExtension($revision->getInformation()->getSuffix())) {
79 $this->invalid_file_names[] = $title;
81 $file_obj->setTitle($title);
82 $file_obj->setFileName($title);
83 $file_obj->setVersion($revision->getVersionNumber());
85 if (!empty($options)) {
92 if ($create_reference) {
93 $file_obj->createReference();
96 $file_obj->processAutoRating();
97 $this->gui_object->putObjectInTree($file_obj, $parent_id);
107 foreach ($options as
$key => $option) {
108 if (in_array(
$key, self::OPTIONS,
true)) {
109 if (!empty($option)) {
110 $setter =
"set" . ucfirst(
$key);
111 $obj->{$setter}($option);
114 throw new LogicException(
"Option '$key' is not declared in " . static::class .
"::OPTIONS.");
ilFileServicesSettings $settings
Class ilFileServicesPolicy.
applyOptions(ilObject $obj, array $options)
Apply provided options to the given object.
Interface ilObjFileProcessorInterface.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ResourceStakeholder $stakeholder, ilObjFileGUI $gui_object, Services $storage, ilFileServicesSettings $settings)
createFileObj(ResourceIdentification $rid, int $parent_id, array $options=[], bool $create_reference=false)
Creates an ilObjFile instance for the provided information.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ResourceStakeholder $stakeholder
static createPreview(\ilObject $a_obj, bool $a_force=false)
Creates the preview for the object with the specified id.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilCountPDFPages $page_counter
Class ResourceIdentification.
array $invalid_file_names
Class ilObjFileAbstractProcessorInterface.
GUI class for file objects.
ilFileServicesPolicy $policy
Interface ResourceStakeholder.