ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilObjFileImplementationEmpty.php
Go to the documentation of this file.
1<?php
2
24{
25 public function getFileName(): string
26 {
27 return '';
28 }
29
30 public function getDirectory(int $a_version = 0): string
31 {
32 return '';
33 }
34
35 public function deleteVersions(?array $a_hist_entry_ids = null): void
36 {
37 // TODO: Implement deleteVersions() method.
38 }
39
40 public function getFileType(): string
41 {
42 return '';
43 }
44
45 public function handleChangedObjectTitle(string $new_title): void
46 {
47 return;
48 }
49
50 public function getStorageID(): ?string
51 {
52 return null;
53 }
54
55 public function getFileSize(): int
56 {
57 return 0;
58 }
59
60 public function getFile(?int $a_hist_entry_id = null): string
61 {
62 return '';
63 }
64
65 public function getVersion(bool $inclduing_drafts = false): int
66 {
67 return 0;
68 }
69
70 public function getMaxVersion(): int
71 {
72 return 0;
73 }
74
75 public function sendFile(?int $a_hist_entry_id = null, bool $inline = true): void
76 {
77 }
78
79 public function getFileExtension(): string
80 {
81 return '';
82 }
83
84 public function getVersions(?array $version_ids = null): array
85 {
86 return [];
87 }
88}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getFileExtension()
Returns the extension of the file name converted to lower-case.
deleteVersions(?array $a_hist_entry_ids=null)
Deletes the specified history entries or all entries if no ids are specified.
getVersions(?array $version_ids=null)
Gets the file versions for this object.
sendFile(?int $a_hist_entry_id=null, bool $inline=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...