Passed
Pull Request — master (#2)
by tsms
02:11
created

Calendar_Minute::setSelection()   B

Complexity

Conditions 8
Paths 4

Size

Total Lines 13
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 10
dl 0
loc 13
rs 8.4444
c 0
b 0
f 0
cc 8
nc 4
nop 1
1
<?php
2
/* vim: set expandtab tabstop=4 shiftwidth=4: */
3
4
/**
5
 * Contains the Calendar_Minute 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
 * Allows Calendar include path to be redefined
42
 * @ignore
43
 */
44
if (!defined('CALENDAR_ROOT')) {
45
    define('CALENDAR_ROOT', 'Calendar'.DIRECTORY_SEPARATOR);
46
}
47
48
/**
49
 * Load Calendar base class
50
 */
51
require_once CALENDAR_ROOT.'Calendar.php';
52
53
/**
54
 * Represents a Minute and builds Seconds
55
 * <code>
56
 * require_once 'Calendar'.DIRECTORY_SEPARATOR.'Minute.php';
57
 * $Minute = new Calendar_Minute(2003, 10, 21, 15, 31); // Oct 21st 2003, 3:31pm
58
 * $Minute->build(); // Build Calendar_Second objects
59
 * while ($Second = & $Minute->fetch()) {
60
 *     echo $Second->thisSecond().'<br />';
61
 * }
62
 * </code>
63
 *
64
 * @category  Date and Time
65
 * @package   Calendar
66
 * @author    Harry Fuecks <[email protected]>
67
 * @copyright 2003-2007 Harry Fuecks
68
 * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
69
 * @link      http://pear.php.net/package/Calendar
70
 * @access    public
71
 */
72
class Minute extends Calendar
73
{
74
    /**
75
     * Constructs Minute
76
     *
77
     * @param int $y year e.g. 2003
78
     * @param int $m month e.g. 5
79
     * @param int $d day e.g. 11
80
     * @param int $h hour e.g. 13
81
     * @param int $i minute e.g. 31
82
     *
83
     * @access public
84
     */
85
    function __construct($y, $m, $d, $h, $i)
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...
86
    {
87
        parent::__construct($y, $m, $d, $h, $i);
88
    }
89
90
    /**
91
     * Builds the Calendar_Second objects
92
     *
93
     * @param array $sDates (optional) Calendar_Second objects representing selected dates
94
     *
95
     * @return boolean
96
     * @access public
97
     */
98
    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...
99
    {
100
        include_once CALENDAR_ROOT.'Second.php';
101
        $sIM = $this->cE->getSecondsInMinute($this->year, $this->month,
102
                $this->day, $this->hour, $this->minute);
103
        for ($i=0; $i < $sIM; $i++) {
104
            $this->children[$i] = new Second($this->year, $this->month,
105
                $this->day, $this->hour, $this->minute, $i);
106
        }
107
        if (count($sDates) > 0) {
108
            $this->setSelection($sDates);
109
        }
110
        return true;
111
    }
112
113
    /**
114
     * Called from build()
115
     *
116
     * @param array $sDates Calendar_Second objects representing selected dates
117
     *
118
     * @return void
119
     * @access private
120
     */
121
    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...
122
    {
123
        foreach ($sDates as $sDate) {
124
            if ($this->year == $sDate->thisYear()
125
                && $this->month == $sDate->thisMonth()
126
                && $this->day == $sDate->thisDay()
127
                && $this->hour == $sDate->thisHour()
128
                && $this->minute == $sDate->thisMinute())
129
            {
130
                $key = (int)$sDate->thisSecond();
131
                if (isset($this->children[$key])) {
132
                    $sDate->setSelected();
133
                    $this->children[$key] = $sDate;
134
                }
135
            }
136
        }
137
    }
138
}
139