ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NoneFileNamePolicy.php
Go to the documentation of this file.
1 <?php
2 
20 
27 {
28  public function check(string $extension): bool
29  {
30  return true;
31  }
32 
33  public function isValidExtension(string $extension): bool
34  {
35  return true;
36  }
37 
38  public function isBlockedExtension(string $extension): bool
39  {
40  return true;
41  }
42 
43  public function prepareFileNameForConsumer(string $filename_with_extension): string
44  {
45  return $filename_with_extension;
46  }
47 }
prepareFileNameForConsumer(string $filename_with_extension)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...