Passed
Push — master ( 08536e...5223e1 )
by tsms
02:22
created

Calendar_Month::Calendar_Month()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
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
39
/**
40
 * Allows Calendar include path to be redefined
41
 * @ignore
42
 */
43
if (!defined('CALENDAR_ROOT')) {
44
    define('CALENDAR_ROOT', 'Calendar'.DIRECTORY_SEPARATOR);
45
}
46
47
/**
48
 * Load Calendar base class
49
 */
50
require_once CALENDAR_ROOT.'Calendar.php';
51
52
/**
53
 * Represents a Month and builds Days
54
 * <code>
55
 * require_once 'Calendar/Month.php';
56
 * $Month = new Calendar_Month(2003, 10); // Oct 2003
57
 * $Month->build(); // Build Calendar_Day objects
58
 * while ($Day = & $Month->fetch()) {
59
 *     echo $Day->thisDay().'<br />';
60
 * }
61
 * </code>
62
 *
63
 * @category  Date and Time
64
 * @package   Calendar
65
 * @author    Harry Fuecks <[email protected]>
66
 * @copyright 2003-2007 Harry Fuecks
67
 * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
68
 * @link      http://pear.php.net/package/Calendar
69
 * @access    public
70
 */
71
class Calendar_Month extends Calendar
72
{
73
    /**
74
     * Constructs Calendar_Month
75
     *
76
     * @param int $y        year e.g. 2003
77
     * @param int $m        month e.g. 5
78
     * @param int $firstDay first day of the week [optional]
79
     *
80
     * @access public
81
     */
82
    function Calendar_Month($y, $m, $firstDay=null)
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...
83
    {
84
        parent::Calendar($y, $m);
85
        $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...
86
    }
87
88
    /**
89
     * Builds Day objects for this Month. Creates as many Calendar_Day objects
90
     * as there are days in the month
91
     *
92
     * @param array $sDates (optional) Calendar_Day objects representing selected dates
93
     *
94
     * @return boolean
95
     * @access public
96
     */
97
    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...
98
    {
99
        include_once CALENDAR_ROOT.'Day.php';
100
        $daysInMonth = $this->cE->getDaysInMonth($this->year, $this->month);
101
        for ($i=1; $i<=$daysInMonth; $i++) {
102
            $this->children[$i] = new Calendar_Day($this->year, $this->month, $i);
103
        }
104
        if (count($sDates) > 0) {
105
            $this->setSelection($sDates);
106
        }
107
        return true;
108
    }
109
110
    /**
111
     * Called from build()
112
     *
113
     * @param array $sDates Calendar_Day objects representing selected dates
114
     *
115
     * @return void
116
     * @access private
117
     */
118
    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...
119
    {
120
        foreach ($sDates as $sDate) {
121
            if ($this->year == $sDate->thisYear()
122
                && $this->month == $sDate->thisMonth()
123
            ) {
124
                $key = $sDate->thisDay();
125
                if (isset($this->children[$key])) {
126
                    $sDate->setSelected();
127
                    $class = strtolower(get_class($sDate));
128
                    if ($class == 'calendar_day' || $class == 'calendar_decorator') {
129
                        $sDate->setFirst($this->children[$key]->isFirst());
130
                        $sDate->setLast($this->children[$key]->isLast());
131
                    }
132
                    $this->children[$key] = $sDate;
133
                }
134
            }
135
        }
136
    }
137
}
138
?>
0 ignored issues
show
Best Practice introduced by
It is not recommended to use PHP's closing tag ?> in files other than templates.

Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.

A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.

Loading history...