ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilFSStorageBadge.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 include_once('Services/FileSystem/classes/class.ilFileSystemStorage.php');
5 
14 {
15  public function __construct($a_container_id = 0)
16  {
17  parent::__construct(self::STORAGE_SECURED, true, $a_container_id);
18  }
19 
20  protected function getPathPostfix()
21  {
22  return 'badge';
23  }
24 
25  protected function getPathPrefix()
26  {
27  return 'ilBadge';
28  }
29 }
__construct($a_container_id=0)