ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
ILIAS\Filesystem Namespace Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

Namespaces

 Decorator
 
 Definitions
 
 DTO
 
 Exception
 
 Finder
 
 Provider
 
 Security
 
 Stream
 
 Util
 This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.
 

Data Structures

interface  Filesystem
 Interface Filesystem. More...
 
class  FilesystemFacade
 Class FilesystemFacade. More...
 
interface  Filesystems
 Class Filesystems. More...
 
class  FilesystemsImpl
 Class FilesystemsImpl. More...
 
interface  MetadataType
 Class MetadataType. More...
 
class  Util
 This Util class is a collection of static helper methods to provide file system related functionality. More...
 
interface  Visibility
 Interface Visibility. More...
 

Functions

static filesystems ()
 Returns the loaded filesystems. More...
 

Variables

trait FilesystemsAware
 Trait FilesystemsAware. More...
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning

Function Documentation

◆ filesystems()

static ILIAS\Filesystem\filesystems ( )
staticprivate

Returns the loaded filesystems.

Returns
Filesystems

Definition at line 39 of file FilesystemsAware.php.

References $DIC.

Referenced by ILIAS\FileUpload\FileUploadImpl\__construct(), ILIAS\Filesystem\Util\LegacyPathHelper\deriveFilesystemFrom(), and ILIAS\FileUpload\FileUploadImpl\selectFilesystem().

39  : Filesystems
40  {
41  if (!isset(self::$filesystems)) {
42  global $DIC;
43  self::$filesystems = $DIC->filesystem();
44  }
45 
46  return self::$filesystems;
47  }
global $DIC
Definition: feed.php:28
+ Here is the caller graph for this function:

Variable Documentation

◆ FilesystemsAware

trait ILIAS::Filesystem\FilesystemsAware
Initial value:
{
private static Filesystems $filesystems

Trait FilesystemsAware.

Trait which ease the filesystem integration within legacy ILIAS components. This trait should not be used within new components.

Author
Nicolas Schäfli ns@st.nosp@m.uder.nosp@m.-raim.nosp@m.ann..nosp@m.ch
Since
5.3
Version
1.0.0

Definition at line 31 of file FilesystemsAware.php.