ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFileDataImport.php
Go to the documentation of this file.
1 <?php
22 {
23  protected string $import_path;
24 
25  public function __construct()
26  {
27  define('IMPORT_PATH', 'import');
29  $this->import_path = parent::getPath() . "/" . IMPORT_PATH;
30  $this->initExportDirectory();
31  }
32 
33  #[\Override]
34  public function getPath(): string
35  {
36  return $this->import_path;
37  }
38 
39  private function initExportDirectory(): void
40  {
41  if (!file_exists($this->import_path)) {
42  ilFileUtils::makeDir($this->import_path);
43  }
44  }
45 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...