ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilFileDataImport Class Reference

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

+ Inheritance diagram for ilFileDataImport:
+ Collaboration diagram for ilFileDataImport:

Public Member Functions

 __construct ()
 
 getPath ()
 
- Public Member Functions inherited from ilFileData
 __construct ()
 
 checkPath (string $a_path)
 
 getPath ()
 
- Public Member Functions inherited from ilFile
 deleteTrailingSlash (string $a_path)
 delete trailing slash of path variables More...
 

Protected Attributes

string $import_path
 
- Protected Attributes inherited from ilFile
string $path
 

Private Member Functions

 initExportDirectory ()
 

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

Deprecated:
Will be removed in ILIAS 10.

Use ILIAS ResourceStorageService as replacement.

Definition at line 21 of file class.ilFileDataImport.php.

Constructor & Destructor Documentation

◆ __construct()

ilFileDataImport::__construct ( )

Definition at line 25 of file class.ilFileDataImport.php.

References ILIAS\GlobalScreen\Provider\__construct(), and initExportDirectory().

26  {
27  define('IMPORT_PATH', 'import');
29  $this->import_path = parent::getPath() . "/" . IMPORT_PATH;
30  $this->initExportDirectory();
31  }
__construct(Container $dic, ilPlugin $plugin)
+ Here is the call graph for this function:

Member Function Documentation

◆ getPath()

ilFileDataImport::getPath ( )

Definition at line 34 of file class.ilFileDataImport.php.

References $import_path.

34  : string
35  {
36  return $this->import_path;
37  }

◆ initExportDirectory()

ilFileDataImport::initExportDirectory ( )
private

Definition at line 39 of file class.ilFileDataImport.php.

References ilFileUtils\makeDir().

Referenced by __construct().

39  : void
40  {
41  if (!file_exists($this->import_path)) {
42  ilFileUtils::makeDir($this->import_path);
43  }
44  }
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $import_path

string ilFileDataImport::$import_path
protected

Definition at line 23 of file class.ilFileDataImport.php.

Referenced by getPath().


The documentation for this class was generated from the following file: