1: <?php
2: /**
3: * The Horde_Data_hermes_xls class extends Horde's TSV Data class with
4: * Hermes-specific handling and a few tweaks for files to open
5: * directly in Excel.
6: *
7: * See the enclosed file LICENSE for license information (BSD). If you
8: * did not receive this file, see http://www.horde.org/licenses/bsdl.php.
9: *
10: * @author Chuck Hagenbuch <chuck@horde.org>
11: * @package Horde_Data
12: */
13: class Hermes_Data_Hermesxls extends Hermes_Data_Hermestsv
14: {
15: protected $_extension = 'xls';
16: protected $_contentType = 'application/msexcel';
17: }
18: