- Timestamp:
- 2013/08/28 13:26:44 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/module/Calendar/Month.php
r23125 r23141 1 1 <?php 2 2 /* vim: set expandtab tabstop=4 shiftwidth=4: */ 3 3 // 4 // +----------------------------------------------------------------------+ 5 // | PHP Version 4 | 6 // +----------------------------------------------------------------------+ 7 // | Copyright (c) 1997-2002 The PHP Group | 8 // +----------------------------------------------------------------------+ 9 // | This source file is subject to version 2.02 of the PHP license, | 10 // | that is bundled with this package in the file LICENSE, and is | 11 // | available at through the world-wide-web at | 12 // | http://www.php.net/license/3_0.txt. | 13 // | If you did not receive a copy of the PHP license and are unable to | 14 // | obtain it through the world-wide-web, please send a note to | 15 // | [email protected] so we can mail you a copy immediately. | 16 // +----------------------------------------------------------------------+ 17 // | Authors: Harry Fuecks <[email protected]> | 18 // +----------------------------------------------------------------------+ 19 // 20 // $Id: Month.php,v 1.3 2005/10/22 10:10:26 quipo Exp $ 21 // 4 22 /** 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: Month.php 300729 2010-06-24 12:05:53Z quipo $ 36 * @link http://pear.php.net/package/Calendar 23 * @package Calendar 24 * @version $Id: Month.php,v 1.3 2005/10/22 10:10:26 quipo Exp $ 37 25 */ 38 26 … … 54 42 * <code> 55 43 * require_once 'Calendar/Month.php'; 56 * $Month = new Calendar_Month(2003, 10); // Oct 200344 * $Month = & new Calendar_Month(2003, 10); // Oct 2003 57 45 * $Month->build(); // Build Calendar_Day objects 58 46 * while ($Day = & $Month->fetch()) { … … 60 48 * } 61 49 * </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 50 * @package Calendar 51 * @access public 70 52 */ 71 53 class Calendar_Month extends Calendar … … 73 55 /** 74 56 * Constructs Calendar_Month 75 * 76 * @param int $y year e.g. 2003 77 * @param int $m month e.g. 5 57 * @param int $y year e.g. 2003 58 * @param int $m month e.g. 5 78 59 * @param int $firstDay first day of the week [optional] 79 *80 60 * @access public 81 61 */ 82 62 function Calendar_Month($y, $m, $firstDay=null) 83 63 { 84 parent::Calendar($y, $m);64 Calendar::Calendar($y, $m); 85 65 $this->firstDay = $this->defineFirstDayOfWeek($firstDay); 86 66 } … … 89 69 * Builds Day objects for this Month. Creates as many Calendar_Day objects 90 70 * as there are days in the month 91 * 92 * @param array $sDates (optional) Calendar_Day objects representing selected dates 93 * 71 * @param array (optional) Calendar_Day objects representing selected dates 94 72 * @return boolean 95 73 * @access public 96 74 */ 97 function build($sDates =array())75 function build($sDates=array()) 98 76 { 99 include_once CALENDAR_ROOT.'Day.php';77 require_once CALENDAR_ROOT.'Day.php'; 100 78 $daysInMonth = $this->cE->getDaysInMonth($this->year, $this->month); 101 79 for ($i=1; $i<=$daysInMonth; $i++) { … … 110 88 /** 111 89 * Called from build() 112 * 113 * @param array $sDates Calendar_Day objects representing selected dates 114 * 90 * @param array 115 91 * @return void 116 92 * @access private
Note: See TracChangeset
for help on using the changeset viewer.
