1 <?php
2
3 /* --------------------------------------------------------------
4 CategoryServiceSettingsInterface.inc.php 2015-12-07
5 Gambio GmbH
6 http://www.gambio.de
7 Copyright (c) 2015 Gambio GmbH
8 Released under the GNU General Public License (Version 2)
9 [http://www.gnu.org/licenses/gpl-2.0.html]
10 --------------------------------------------------------------
11 */
12
13 /**
14 * Interface CategoryServiceSettingsInterface
15 *
16 * This class contains the file system path to the image directory by using specific constants which are defined in
17 * the config. It is used by the factory to build the proper service environment.
18 * By encapsulating this dependency the code becomes more explicit and testable.
19 *
20 * @category System
21 * @package Category
22 * @subpackage Interfaces
23 */
24 interface CategoryServiceSettingsInterface
25 {
26 /**
27 * Returns the path to image directory.
28 *
29 * @return string
30 */
31 public function getImagesDirPath();
32 }