~ubuntu-branches/ubuntu/vivid/php-horde-icalendar/vivid-proposed

« back to all changes in this revision

Viewing changes to Horde_Icalendar-2.0.8/lib/Horde/Icalendar/Valarm.php

  • Committer: Package Import Robot
  • Author(s): Mathieu Parent
  • Date: 2014-06-05 20:31:26 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20140605203126-geamf8wv7cvfrruh
Tags: 2.0.9-1
New upstream version 2.0.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/**
3
 
 * Class representing vAlarms.
4
 
 *
5
 
 * Copyright 2003-2014 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_Valarm extends Horde_Icalendar
16
 
{
17
 
    /**
18
 
     * The component type of this class.
19
 
     *
20
 
     * @var string
21
 
     */
22
 
    public $type = 'vAlarm';
23
 
 
24
 
    /**
25
 
     * TODO
26
 
     *
27
 
     * @return TODO
28
 
     */
29
 
    public function exportvCalendar()
30
 
    {
31
 
        return $this->_exportvData('VALARM');
32
 
    }
33
 
 
34
 
}