ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjectPropertyTileImage.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
32 {
34  private const SUPPORTED_FILE_EXTENSIONS = ['png', 'jpg', 'jpeg'];
35 
36  protected const INPUT_LABEL = 'obj_tile_image';
37  protected const INPUT_BYLINE = 'obj_tile_image_info';
38 
39  private bool $deleted_flag = false;
40 
41  public function __construct(
42  private ?ilObjectTileImage $tile_image = null
43  ) {
44  }
45 
46  public function getTileImage(): ?ilObjectTileImage
47  {
48  return $this->tile_image;
49  }
50 
51  public function withTileImage(ilObjectTileImage $tile_image): self
52  {
53  $clone = clone $this;
54  $clone->tile_image = $tile_image;
55  return $clone;
56  }
57 
58  public function getDeletedFlag(): bool
59  {
60  return $this->deleted_flag;
61  }
62 
63  public function withDeletedFlag(): self
64  {
65  $clone = clone $this;
66  $clone->deleted_flag = true;
67  return $clone;
68  }
69 
70  public function toForm(
71  \ilLanguage $language,
72  FieldFactory $field_factory,
74  ): File {
75  $trafo = $refinery->custom()->transformation(
76  function ($v): ?\ilObjectProperty {
77  if ($v === null || $v === []) {
78  return $this->withDeletedFlag();
79  }
80 
81  if (count($v) > 0 && $v[0] === 'tile_image') {
82  return $this;
83  }
84 
85  return $this->withTileImage(
86  $this->tile_image->withRid($v[0])
87  );
88  }
89  );
90 
91  $tile_image = $field_factory
92  ->file(new \ilObjectTileImageUploadHandlerGUI($this->tile_image), $language->txt(self::INPUT_LABEL), $language->txt(self::INPUT_BYLINE))
93  ->withAcceptedMimeTypes(self::SUPPORTED_MIME_TYPES)
94  ->withAdditionalTransformation($trafo);
95 
96  if ($this->tile_image->getRid() === null
97  || $this->tile_image->getRid() === '') {
98  return $tile_image;
99  }
100 
101  return $tile_image->withValue([$this->tile_image->getRid()]);
102  }
103 
104  public function toLegacyForm(
105  \ilLanguage $language
106  ): \ilImageFileInputGUI {
107  $timg = new \ilImageFileInputGUI($language->txt(self::INPUT_LABEL), 'tile_image');
108  $timg->setInfo($language->txt(self::INPUT_BYLINE));
109  $timg->setSuffixes(self::SUPPORTED_FILE_EXTENSIONS);
110  $timg->setUseCache(false);
111  $timg->setImage($this->tile_image?->getSrcUrlForLegacyForm() ?? '');
112  $timg->setValue($this->tile_image?->getRid() ?? '');
113  return $timg;
114  }
115 }
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
toForm(\ilLanguage $language, FieldFactory $field_factory, Refinery $refinery)
This class represents an image file property in a property form.
This describes file field.
Definition: File.php:26