22 lines
515 B
PHP
22 lines
515 B
PHP
<?php
|
|
/**
|
|
* The Horde_Themes_Sound:: class provides an object-oriented interface to
|
|
* a themed sound.
|
|
*
|
|
* Copyright 2010-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* See the enclosed file COPYING for license information (LGPL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/lgpl21.
|
|
*
|
|
* @author Michael Slusarz <slusarz@horde.org>
|
|
* @category Horde
|
|
* @package Core
|
|
*/
|
|
class Horde_Themes_Sound extends Horde_Themes_Element
|
|
{
|
|
/**
|
|
*/
|
|
protected $_dirname = 'sounds';
|
|
|
|
}
|