ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilFileProperty.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
6 
11 {
12  private ?string $absolute_path;
13  private ?string $file_name;
14 
15  public function getAbsolutePath(): ?string
16  {
17  return $this->absolute_path;
18  }
19 
20  public function setAbsolutePath(string $absolute_path): void
21  {
22  $this->absolute_path = $absolute_path;
23  }
24 
25  public function getFileName(): ?string
26  {
27  return $this->file_name;
28  }
29 
30  public function setFileName(string $file_name): void
31  {
32  $this->file_name = $file_name;
33  }
34 }