1: <?php
2: /**
3: * The Horde_Themes_Image:: class provides an object-oriented interface to
4: * a themed image.
5: *
6: * Copyright 2010-2012 Horde LLC (http://www.horde.org/)
7: *
8: * See the enclosed file COPYING for license information (LGPL). If you
9: * did not receive this file, see http://www.horde.org/licenses/lgpl21.
10: *
11: * @author Michael Slusarz <slusarz@horde.org>
12: * @category Horde
13: * @package Core
14: */
15: class Horde_Themes_Image extends Horde_Themes_Element
16: {
17: /**
18: * The default directory name for this element type.
19: *
20: * @var string
21: */
22: protected $_dirname = 'graphics';
23:
24: }
25: