ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilFileProperty.php
Go to the documentation of this file.
1 <?php
2 
4 
10 {
14  private $absolute_path;
15 
16 
20  private $file_name;
21 
22  public function __construct()
23  {
24 
25  }
26 
30  public function getAbsolutePath() : string
31  {
32  return $this->absolute_path;
33  }
34 
38  public function setAbsolutePath(string $absolute_path) : void
39  {
40  $this->absolute_path = $absolute_path;
41  }
42 
46  public function getFileName() : string
47  {
48  return $this->file_name;
49  }
50 
54  public function setFileName(string $file_name) : void
55  {
56  $this->file_name = $file_name;
57  }
58 }