1: <?php
2: /**
3: * Class representing vJournals.
4: *
5: * Copyright 2003-2012 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file COPYING for license information (LGPL). If you
8: * did not receive this file, see http://www.horde.org/licenses/lgpl21.
9: *
10: * @author Mike Cochrane <mike@graftonhall.co.nz>
11: * @category Horde
12: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
13: * @package Icalendar
14: */
15: class Horde_Icalendar_Vjournal extends Horde_Icalendar {
16:
17: /**
18: * The component type of this class.
19: *
20: * @var string
21: */
22: public $type = 'vJournal';
23:
24: /**
25: * TODO
26: *
27: * @return TODO
28: */
29: public function exportvCalendar()
30: {
31: return $this->_exportvData('VJOURNAL');
32: }
33:
34: }
35: