Passed
Pull Request — master (#2)
by tsms
01:30
created

Hour::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 4
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/* vim: set expandtab tabstop=4 shiftwidth=4: */
3
4
/**
5
 * Contains the Calendar_Hour 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 an Hour and builds Minutes
42
 * <code>
43
 * require_once 'Calendar'.DIRECTORY_SEPARATOR.'Hour.php';
44
 * $Hour = new Calendar_Hour(2003, 10, 21, 15); // Oct 21st 2003, 3pm
45
 * $Hour->build(); // Build Calendar_Minute objects
46
 * while ($Minute = & $Hour->fetch()) {
47
 *     echo $Minute->thisMinute().'<br />';
48
 * }
49
 * </code>
50
 *
51
 * @category  Date and Time
52
 * @package   Calendar
53
 * @author    Harry Fuecks <[email protected]>
54
 * @copyright 2003-2007 Harry Fuecks
55
 * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
56
 * @link      http://pear.php.net/package/Calendar
57
 * @access    public
58
 */
59
class Hour extends Calendar
60
{
61
    /**
62
     * Constructs Calendar_Hour
63
     *
64
     * @param int $y year e.g. 2003
65
     * @param int $m month e.g. 5
66
     * @param int $d day e.g. 11
67
     * @param int $h hour e.g. 13
68
     *
69
     * @access public
70
     */
71
    function __construct($y, $m, $d, $h)
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
72
    {
73
        parent::__construct($y, $m, $d, $h);
74
    }
75
76
    /**
77
     * Builds the Minutes in the Hour
78
     *
79
     * @param array $sDates (optional) Calendar_Minute objects representing selected dates
80
     *
81
     * @return boolean
82
     * @access public
83
     */
84
    function build($sDates = array())
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
85
    {
86
        include_once CALENDAR_ROOT.'Minute.php';
87
        $mIH = $this->cE->getMinutesInHour($this->year, $this->month, $this->day,
88
                           $this->hour);
89
        for ($i=0; $i < $mIH; $i++) {
90
            $this->children[$i] =
91
                new Minute($this->year, $this->month, $this->day,
92
                           $this->hour, $i);
93
        }
94
        if (count($sDates) > 0) {
95
            $this->setSelection($sDates);
96
        }
97
        return true;
98
    }
99
100
    /**
101
     * Called from build()
102
     *
103
     * @param array $sDates Calendar_Minute objects representing selected dates
104
     *
105
     * @return void
106
     * @access private
107
     */
108
    function setSelection($sDates)
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
109
    {
110
        foreach ($sDates as $sDate) {
111
            if ($this->year == $sDate->thisYear()
112
                && $this->month == $sDate->thisMonth()
113
                && $this->day == $sDate->thisDay()
114
                && $this->hour == $sDate->thisHour())
115
            {
116
                $key = (int)$sDate->thisMinute();
117
                if (isset($this->children[$key])) {
118
                    $sDate->setSelected();
119
                    $this->children[$key] = $sDate;
120
                }
121
            }
122
        }
123
    }
124
}
125