ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilFSStorageBadgeImageTemplate.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 'badgetmpl';
23  }
24 
25  protected function getPathPrefix()
26  {
27  return 'ilBadge';
28  }
29 }