ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilFileObjectToStorageVersion.php
Go to the documentation of this file.
1<?php
2
8{
12 protected $version;
16 protected $path;
20 protected $file_name;
24 protected $title;
28 protected $action;
32 protected $owner = 6;
37
48 public function __construct(
49 int $version,
50 string $path,
51 string $filename,
52 string $title,
53 string $action,
55 int $owner = 6
56 ) {
57 $this->version = $version;
58 $this->path = $path;
59 $this->file_name = $filename;
60 $this->title = $title;
61 $this->action = $action;
62 $this->owner = $owner;
63 $this->creation_date_timestamp = $creation_date_timestamp;
64 }
65
69 public function getVersion() : int
70 {
71 return $this->version;
72 }
73
77 public function getPath() : string
78 {
79 return $this->path;
80 }
81
85 public function getFileName() : string
86 {
87 return $this->file_name;
88 }
89
93 public function getTitle() : string
94 {
95 return $this->title;
96 }
97
101 public function getAction() : string
102 {
103 return $this->action;
104 }
105
109 public function getOwner() : int
110 {
111 return $this->owner;
112 }
113
117 public function getCreationDateTimestamp() : int
118 {
120 }
121
122}
$filename
Definition: buildRTE.php:89
An exception for terminatinating execution or to throw for unit testing.
Class ilFileObjectToStorageVersion.
__construct(int $version, string $path, string $filename, string $title, string $action, int $creation_date_timestamp, int $owner=6)
ilFileObjectToStorageVersion constructor.