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