ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilFileProperty.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
29{
30 private ?string $absolute_path;
31 private ?string $file_name;
32
33 private string $file_rid;
34
35 public function getAbsolutePath(): ?string
36 {
38 }
39
40 public function setAbsolutePath(string $absolute_path): void
41 {
42 $this->absolute_path = $absolute_path;
43 }
44
45 public function getFileName(): ?string
46 {
47 return $this->file_name;
48 }
49
50 public function setFileName(string $file_name): void
51 {
52 $this->file_name = $file_name;
53 }
54
55 public function setFileRId(string $file_rid): void
56 {
57 $this->file_rid = $file_rid;
58 }
59
60 public function getFileRId(): ?string
61 {
62 return $this->file_rid ?? null;
63 }
64}