1
|
|
|
<?php |
2
|
|
|
/* vim: set expandtab tabstop=4 shiftwidth=4: */ |
3
|
|
|
|
4
|
|
|
/** |
5
|
|
|
* Contains the Calendar_Second class |
6
|
|
|
* |
7
|
|
|
* PHP versions 4 and 5 |
8
|
|
|
* |
9
|
|
|
* LICENSE: Redistribution and use in source and binary forms, with or without |
10
|
|
|
* modification, are permitted provided that the following conditions are met: |
11
|
|
|
* 1. Redistributions of source code must retain the above copyright |
12
|
|
|
* notice, this list of conditions and the following disclaimer. |
13
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright |
14
|
|
|
* notice, this list of conditions and the following disclaimer in the |
15
|
|
|
* documentation and/or other materials provided with the distribution. |
16
|
|
|
* 3. The name of the author may not be used to endorse or promote products |
17
|
|
|
* derived from this software without specific prior written permission. |
18
|
|
|
* |
19
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED |
20
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
21
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
22
|
|
|
* IN NO EVENT SHALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY |
23
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
24
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
25
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
26
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
28
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29
|
|
|
* |
30
|
|
|
* @category Date and Time |
31
|
|
|
* @package Calendar |
32
|
|
|
* @author Harry Fuecks <[email protected]> |
33
|
|
|
* @copyright 2003-2007 Harry Fuecks |
34
|
|
|
* @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) |
35
|
|
|
* @version CVS: $Id$ |
36
|
|
|
* @link http://pear.php.net/package/Calendar |
37
|
|
|
*/ |
38
|
|
|
namespace PEAR\Calendar; |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* Represents a Second<br /> |
42
|
|
|
* <b>Note:</b> Seconds do not build other objects |
43
|
|
|
* so related methods are overridden to return NULL |
44
|
|
|
* |
45
|
|
|
* @category Date and Time |
46
|
|
|
* @package Calendar |
47
|
|
|
* @author Harry Fuecks <[email protected]> |
48
|
|
|
* @copyright 2003-2007 Harry Fuecks |
49
|
|
|
* @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) |
50
|
|
|
* @link http://pear.php.net/package/Calendar |
51
|
|
|
* @access public |
52
|
|
|
*/ |
53
|
|
|
class Second extends Calendar |
54
|
|
|
{ |
55
|
|
|
/** |
56
|
|
|
* Constructs Second |
57
|
|
|
* |
58
|
|
|
* @param int $y year e.g. 2003 |
59
|
|
|
* @param int $m month e.g. 5 |
60
|
|
|
* @param int $d day e.g. 11 |
61
|
|
|
* @param int $h hour e.g. 13 |
62
|
|
|
* @param int $i minute e.g. 31 |
63
|
|
|
* @param int $s second e.g. 45 |
64
|
|
|
*/ |
65
|
|
|
function __construct($y, $m, $d, $h, $i, $s) |
|
|
|
|
66
|
|
|
{ |
67
|
|
|
parent::__construct($y, $m, $d, $h, $i, $s); |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
/** |
71
|
|
|
* Overwrite build |
72
|
|
|
* |
73
|
|
|
* @param array $sDates array containing Calendar objects to select (optional) |
74
|
|
|
* |
75
|
|
|
* @return NULL |
76
|
|
|
*/ |
77
|
|
|
function build($sDates = array()) |
|
|
|
|
78
|
|
|
{ |
79
|
|
|
return null; |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
/** |
83
|
|
|
* Overwrite fetch |
84
|
|
|
* |
85
|
|
|
* @return NULL |
86
|
|
|
*/ |
87
|
|
|
function fetch() |
|
|
|
|
88
|
|
|
{ |
89
|
|
|
return null; |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
/** |
93
|
|
|
* Overwrite fetchAll |
94
|
|
|
* |
95
|
|
|
* @return NULL |
96
|
|
|
*/ |
97
|
|
|
function fetchAll() |
|
|
|
|
98
|
|
|
{ |
99
|
|
|
return null; |
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
/** |
103
|
|
|
* Overwrite size |
104
|
|
|
* |
105
|
|
|
* @return NULL |
106
|
|
|
*/ |
107
|
|
|
function size() |
|
|
|
|
108
|
|
|
{ |
109
|
|
|
return null; |
110
|
|
|
} |
111
|
|
|
} |
112
|
|
|
|
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.