ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilFSStoragePreview.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once("./Services/FileSystem/classes/class.ilFileSystemStorage.php");
5 
15 {
25  public function __construct($a_container_id = 0)
26  {
27  parent::__construct(self::STORAGE_WEB, true, $a_container_id);
28  }
29 
39  protected function getPathPostfix()
40  {
41  return "preview";
42  }
43 
52  protected function getPathPrefix()
53  {
54  return "previews";
55  }
56 }
57 ?>
getPathPrefix()
Get path prefix.
getPathPostfix()
Get directory name.
__construct($a_container_id=0)
Constructor.