ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilFileData.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 
12 require_once("classes/class.ilFile.php");
13 
14 class ilFileData extends ilFile
15 {
16 
23  function ilFileData()
24  {
25  require_once("classes/class.ilFile.php");
27  $this->path = CLIENT_DATA_DIR;
28  }
29 
36  function checkPath($a_path)
37  {
38  if(is_writable($a_path))
39  {
40  return true;
41  }
42  else
43  {
44  return false;
45  }
46  }
47 
53  function getPath()
54  {
55  return $this->path;
56  }
57 }
58 ?>