Ignore:
Timestamp:
2012/02/11 04:20:07 (14 years ago)
Author:
Seasoft
Message:

#1625 (typo修正・ソース整形・ソースコメントの改善)

  • ソース整形(主に制御構造のスペース)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_Date.php

    r21446 r21479  
    3535    } 
    3636 
    37     function setStartYear($year){ 
     37    function setStartYear($year) { 
    3838        $this->start_year = $year; 
    3939    } 
    4040 
    41     function getStartYear(){ 
     41    function getStartYear() { 
    4242        return $this->start_year; 
    4343    } 
     
    5151    } 
    5252 
    53     function setMonth($month){ 
     53    function setMonth($month) { 
    5454        $this->month = $month; 
    5555    } 
    5656 
    57     function setDay ($day){ 
     57    function setDay($day) { 
    5858        $this->day = $day; 
    5959    } 
     
    9393    } 
    9494 
    95     function getZeroYear($year = ''){ 
     95    function getZeroYear($year = '') { 
    9696        if ($year) $this->setStartYear($year); 
    9797 
     
    111111    } 
    112112 
    113     function getZeroMonth(){ 
     113    function getZeroMonth() { 
    114114 
    115115        $month_array = array(); 
     
    144144    } 
    145145 
    146     function getHour(){ 
     146    function getHour() { 
    147147 
    148148        $day_array = array(); 
     
    154154    } 
    155155 
    156     function getMinutes(){ 
     156    function getMinutes() { 
    157157 
    158158        $minutes_array = array(); 
     
    164164    } 
    165165 
    166     function getMinutesInterval(){ 
     166    function getMinutesInterval() { 
    167167 
    168168        $minutes_array = array("00"=>"00", "30"=>"30"); 
Note: See TracChangeset for help on using the changeset viewer.