Issues (491)

src/Month.php (1 issue)

1
<?php
2
/* vim: set expandtab tabstop=4 shiftwidth=4: */
3
4
/**
5
 * Contains the Calendar_Month 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 Month and builds Days
42
 * <code>
43
 * $Month = new PEAR\Calendar\Month(2003, 10); // Oct 2003
44
 * $Month->build(); // Build Calendar_Day objects
45
 * while ($Day = & $Month->fetch()) {
46
 *     echo $Day->thisDay().'<br />';
47
 * }
48
 * </code>
49
 *
50
 * @category  Date and Time
51
 * @package   Calendar
52
 * @author    Harry Fuecks <[email protected]>
53
 * @copyright 2003-2007 Harry Fuecks
54
 * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
55
 * @link      http://pear.php.net/package/Calendar
56
 * @access    public
57
 */
58
class Month extends Calendar
59
{
60
    /**
61
     * Constructs Calendar_Month
62
     *
63
     * @param int $y        year e.g. 2003
64
     * @param int $m        month e.g. 5
65
     * @param int $firstDay first day of the week [optional]
66
     *
67
     * @access public
68
     */
69
    function __construct($y, $m, $firstDay=null)
70
    {
71
        parent::__construct($y, $m);
72
        $this->firstDay = $this->defineFirstDayOfWeek($firstDay);
0 ignored issues
show
Bug Best Practice introduced by
The property firstDay does not exist. Although not strictly required by PHP, it is generally a best practice to declare properties explicitly.
Loading history...
73
    }
74
75
    /**
76
     * Builds Day objects for this Month. Creates as many Calendar_Day objects
77
     * as there are days in the month
78
     *
79
     * @param array $sDates (optional) Calendar_Day objects representing selected dates
80
     *
81
     * @return boolean
82
     * @access public
83
     */
84
    function build($sDates = array())
85
    {
86
        $daysInMonth = $this->cE->getDaysInMonth($this->year, $this->month);
87
        for ($i=1; $i<=$daysInMonth; $i++) {
88
            $this->children[$i] = new Day($this->year, $this->month, $i);
89
        }
90
        if (count($sDates) > 0) {
91
            $this->setSelection($sDates);
92
        }
93
        return true;
94
    }
95
96
    /**
97
     * Called from build()
98
     *
99
     * @param array $sDates Calendar_Day objects representing selected dates
100
     *
101
     * @return void
102
     * @access private
103
     */
104
    function setSelection($sDates)
105
    {
106
        foreach ($sDates as $sDate) {
107
            if ($this->year == $sDate->thisYear()
108
                && $this->month == $sDate->thisMonth()
109
            ) {
110
                $key = $sDate->thisDay();
111
                if (isset($this->children[$key])) {
112
                    $sDate->setSelected();
113
                    $class = strtolower(get_class($sDate));
114
                    if ($class == 'calendar_day' || $class == 'calendar_decorator') {
115
                        $sDate->setFirst($this->children[$key]->isFirst());
116
                        $sDate->setLast($this->children[$key]->isLast());
117
                    }
118
                    $this->children[$key] = $sDate;
119
                }
120
            }
121
        }
122
    }
123
}
124