ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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
4require_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.