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/Decorator/Uri.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// |          Lorenzo Alberton <l dot alberton at quipo dot it>           | 
     19// +----------------------------------------------------------------------+ 
     20// 
     21// $Id: Uri.php,v 1.3 2004/08/16 09:04:20 hfuecks Exp $ 
     22// 
    423/** 
    5  * Contains the Calendar_Decorator_Uri 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  * @author    Lorenzo Alberton <l.alberton@quipo.it> 
    34  * @copyright 2003-2007 Harry Fuecks, Lorenzo Alberton 
    35  * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause) 
    36  * @version   CVS: $Id: Uri.php 300729 2010-06-24 12:05:53Z quipo $ 
    37  * @link      http://pear.php.net/package/Calendar 
     24 * @package Calendar 
     25 * @version $Id: Uri.php,v 1.3 2004/08/16 09:04:20 hfuecks Exp $ 
    3826 */ 
    3927 
     
    6250 * <code> 
    6351 * $Day = new Calendar_Day(2003, 10, 23); 
    64  * $Uri = new Calendar_Decorator_Uri($Day); 
     52 * $Uri = & new Calendar_Decorator_Uri($Day); 
    6553 * $Uri->setFragments('year', 'month', 'day'); 
    6654 * echo $Uri->getPrev(); // Displays year=2003&month=10&day=22 
    6755 * </code> 
    68  * 
    69  * @category  Date and Time 
    70  * @package   Calendar 
    71  * @author    Harry Fuecks <hfuecks@phppatterns.com> 
    72  * @author    Lorenzo Alberton <l.alberton@quipo.it> 
    73  * @copyright 2003-2007 Harry Fuecks, Lorenzo Alberton 
    74  * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause) 
    75  * @link      http://pear.php.net/package/Calendar 
    76  * @see       Calendar_Util_Uri 
    77  * @access    public 
     56 * @see Calendar_Util_Uri 
     57 * @package Calendar 
     58 * @access public 
    7859 */ 
    7960class Calendar_Decorator_Uri extends Calendar_Decorator 
     
    8162 
    8263    /** 
    83      * @var Calendar_Util_Uri 
    84      * @access private 
    85      */ 
     64    * @var Calendar_Util_Uri 
     65    * @access private 
     66    */ 
    8667    var $Uri; 
    8768 
    8869    /** 
    8970     * Constructs Calendar_Decorator_Uri 
    90      * 
    91      * @param object &$Calendar subclass of Calendar 
    92      * 
     71     * @param object subclass of Calendar 
    9372     * @access public 
    9473     */ 
     
    10079    /** 
    10180     * Sets the URI fragment names 
    102      * 
    103      * @param string $y URI fragment for year 
    104      * @param string $m (optional) URI fragment for month 
    105      * @param string $d (optional) URI fragment for day 
    106      * @param string $h (optional) URI fragment for hour 
    107      * @param string $i (optional) URI fragment for minute 
    108      * @param string $s (optional) URI fragment for second 
    109      * 
     81     * @param string URI fragment for year 
     82     * @param string (optional) URI fragment for month 
     83     * @param string (optional) URI fragment for day 
     84     * @param string (optional) URI fragment for hour 
     85     * @param string (optional) URI fragment for minute 
     86     * @param string (optional) URI fragment for second 
    11087     * @return void 
    11188     * @access public 
    11289     */ 
    113     function setFragments($y, $m = null, $d = null, $h = null, $i = null, $s = null) 
    114     { 
    115         $this->Uri = new Calendar_Util_Uri($y, $m, $d, $h, $i, $s); 
     90    function setFragments($y, $m=null, $d=null, $h=null, $i=null, $s=null) { 
     91        $this->Uri = & new Calendar_Util_Uri($y, $m, $d, $h, $i, $s); 
    11692    } 
    11793 
    11894    /** 
    11995     * Sets the separator string between fragments 
    120      * 
    121      * @param string $separator url fragment separator e.g. / 
    122      * 
     96     * @param string separator e.g. / 
    12397     * @return void 
    12498     * @access public 
     
    130104 
    131105    /** 
    132      * Puts Uri decorator into "scalar mode" - URI variable names are not returned 
    133      * 
    134      * @param boolean $state (optional) 
    135      * 
     106     * Puts Uri decorator into "scalar mode" - URI variable names are not 
     107     * returned 
     108     * @param boolean (optional) 
    136109     * @return void 
    137110     * @access public 
    138111     */ 
    139     function setScalar($state = true) 
     112    function setScalar($state=true) 
    140113    { 
    141114        $this->Uri->scalar = $state; 
     
    144117    /** 
    145118     * Gets the URI string for the previous calendar unit 
    146      * 
    147      * @param string $method calendar unit to fetch uri for (year, month, week or day etc) 
    148      * 
     119     * @param string calendar unit to fetch uri for (year,month,week or day etc) 
    149120     * @return string 
    150121     * @access public 
     
    157128    /** 
    158129     * Gets the URI string for the current calendar unit 
    159      * 
    160      * @param string $method calendar unit to fetch uri for (year,month,week or day etc) 
    161      * 
     130     * @param string calendar unit to fetch uri for (year,month,week or day etc) 
    162131     * @return string 
    163132     * @access public 
     
    170139    /** 
    171140     * Gets the URI string for the next calendar unit 
    172      * 
    173      * @param string $method calendar unit to fetch uri for (year,month,week or day etc) 
    174      * 
     141     * @param string calendar unit to fetch uri for (year,month,week or day etc) 
    175142     * @return string 
    176143     * @access public 
     
    180147        return $this->Uri->next($this, $method); 
    181148    } 
     149 
    182150} 
    183151?> 
Note: See TracChangeset for help on using the changeset viewer.