Ignore:
Timestamp:
2013/08/28 13:55:43 (11 years ago)
Author:
m_uehara
Message:

#2348 r23140 をマージ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13_0/data/module/Calendar/Second.php

    r23126 r23143  
    11<?php 
    22/* 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// | license@php.net so we can mail you a copy immediately.               | 
     16// +----------------------------------------------------------------------+ 
     17// | Authors: Harry Fuecks <hfuecks@phppatterns.com>                      | 
     18// +----------------------------------------------------------------------+ 
     19// 
     20// $Id: Second.php,v 1.1 2004/05/24 22:25:42 quipo Exp $ 
     21// 
    422/** 
    5  * Contains the Calendar_Second 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 <hfuecks@phppatterns.com> 
    33  * @copyright 2003-2007 Harry Fuecks 
    34  * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause) 
    35  * @version   CVS: $Id: Second.php 300728 2010-06-24 11:43:56Z quipo $ 
    36  * @link      http://pear.php.net/package/Calendar 
     23 * @package Calendar 
     24 * @version $Id: Second.php,v 1.1 2004/05/24 22:25:42 quipo Exp $ 
    3725 */ 
    3826 
     
    5442 * <b>Note:</b> Seconds do not build other objects 
    5543 * so related methods are overridden to return NULL 
    56  * 
    57  * @category  Date and Time 
    58  * @package   Calendar 
    59  * @author    Harry Fuecks <hfuecks@phppatterns.com> 
    60  * @copyright 2003-2007 Harry Fuecks 
    61  * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause) 
    62  * @link      http://pear.php.net/package/Calendar 
    63  * @access    public 
     44 * @package Calendar 
    6445 */ 
    6546class Calendar_Second extends Calendar 
     
    6748    /** 
    6849     * Constructs Second 
    69      * 
    70      * @param int $y year e.g. 2003 
    71      * @param int $m month e.g. 5 
    72      * @param int $d day e.g. 11 
    73      * @param int $h hour e.g. 13 
    74      * @param int $i minute e.g. 31 
    75      * @param int $s second e.g. 45 
     50     * @param int year e.g. 2003 
     51     * @param int month e.g. 5 
     52     * @param int day e.g. 11 
     53     * @param int hour e.g. 13 
     54     * @param int minute e.g. 31 
     55     * @param int second e.g. 45 
    7656     */ 
    7757    function Calendar_Second($y, $m, $d, $h, $i, $s) 
    7858    { 
    79         parent::Calendar($y, $m, $d, $h, $i, $s); 
     59        Calendar::Calendar($y, $m, $d, $h, $i, $s); 
    8060    } 
    8161 
    8262    /** 
    8363     * Overwrite build 
    84      * 
    8564     * @return NULL 
    8665     */ 
     
    9271    /** 
    9372     * Overwrite fetch 
    94      * 
    9573     * @return NULL 
    9674     */ 
     
    10280    /** 
    10381     * Overwrite fetchAll 
    104      * 
    10582     * @return NULL 
    10683     */ 
     
    11289    /** 
    11390     * Overwrite size 
    114      * 
    11591     * @return NULL 
    11692     */ 
Note: See TracChangeset for help on using the changeset viewer.