ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilFileData.php
Go to the documentation of this file.
1<?php
2
22class ilFileData extends ilFile
23{
24 public function __construct()
25 {
26 $this->path = defined('CLIENT_DATA_DIR') ? CLIENT_DATA_DIR : '';
27 }
28
29 public function checkPath(string $a_path): bool
30 {
31 return is_writable($a_path);
32 }
33
34 public function getPath(): string
35 {
36 return $this->path;
37 }
38}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkPath(string $a_path)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $path
const CLIENT_DATA_DIR
Definition: constants.php:46