Changeset 21479 for branches/version-2_12-dev/data/class/SC_Date.php
- Timestamp:
- 2012/02/11 04:20:07 (14 years ago)
- File:
-
- 1 edited
-
branches/version-2_12-dev/data/class/SC_Date.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/SC_Date.php
r21446 r21479 35 35 } 36 36 37 function setStartYear($year) {37 function setStartYear($year) { 38 38 $this->start_year = $year; 39 39 } 40 40 41 function getStartYear() {41 function getStartYear() { 42 42 return $this->start_year; 43 43 } … … 51 51 } 52 52 53 function setMonth($month) {53 function setMonth($month) { 54 54 $this->month = $month; 55 55 } 56 56 57 function setDay ($day){57 function setDay($day) { 58 58 $this->day = $day; 59 59 } … … 93 93 } 94 94 95 function getZeroYear($year = '') {95 function getZeroYear($year = '') { 96 96 if ($year) $this->setStartYear($year); 97 97 … … 111 111 } 112 112 113 function getZeroMonth() {113 function getZeroMonth() { 114 114 115 115 $month_array = array(); … … 144 144 } 145 145 146 function getHour() {146 function getHour() { 147 147 148 148 $day_array = array(); … … 154 154 } 155 155 156 function getMinutes() {156 function getMinutes() { 157 157 158 158 $minutes_array = array(); … … 164 164 } 165 165 166 function getMinutesInterval() {166 function getMinutesInterval() { 167 167 168 168 $minutes_array = array("00"=>"00", "30"=>"30");
Note: See TracChangeset
for help on using the changeset viewer.
