@@ -63,6 +63,10 @@ |
||
| 63 | 63 | * |
| 64 | 64 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ |
| 65 | 65 | */ |
| 66 | + |
|
| 67 | + /** |
|
| 68 | + * @param \DateTime $date_time |
|
| 69 | + */ |
|
| 66 | 70 | public function __construct( $date_time = NULL ) { |
| 67 | 71 | |
| 68 | 72 | if ( $date_time !== NULL ) { |
@@ -100,10 +100,10 @@ discard block |
||
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | /** |
| 103 | - *convert jalali year to gregorian year |
|
| 104 | - * @since Oct, 16 2015 |
|
| 105 | - * @return object |
|
| 106 | - */ |
|
| 103 | + *convert jalali year to gregorian year |
|
| 104 | + * @since Oct, 16 2015 |
|
| 105 | + * @return object |
|
| 106 | + */ |
|
| 107 | 107 | public function jalaliToGregorian( $date_time ) { |
| 108 | 108 | |
| 109 | 109 | $this->config = include( 'Jalali.php' ); |
@@ -164,15 +164,15 @@ discard block |
||
| 164 | 164 | $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day ); |
| 165 | 165 | |
| 166 | 166 | |
| 167 | - return $this->date_time; |
|
| 167 | + return $this->date_time; |
|
| 168 | 168 | |
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | /** |
| 172 | - *convert jalali year to hijri year |
|
| 173 | - * @since Oct, 17 2015 |
|
| 174 | - * @return object |
|
| 175 | - */ |
|
| 172 | + *convert jalali year to hijri year |
|
| 173 | + * @since Oct, 17 2015 |
|
| 174 | + * @return object |
|
| 175 | + */ |
|
| 176 | 176 | public function jalaliToHijri( $date_time ) { |
| 177 | 177 | |
| 178 | 178 | $this->date_time = $date_time; |
@@ -193,9 +193,9 @@ discard block |
||
| 193 | 193 | |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | - $this->temp_day += $this->day; |
|
| 196 | + $this->temp_day += $this->day; |
|
| 197 | 197 | |
| 198 | - $this->leap = new Leap( $this->year ); |
|
| 198 | + $this->leap = new Leap( $this->year ); |
|
| 199 | 199 | |
| 200 | 200 | if( $this->leap->get() && $this->month > 11 ) $this->temp_day++; |
| 201 | 201 | |
@@ -207,15 +207,15 @@ discard block |
||
| 207 | 207 | |
| 208 | 208 | $_month = $_year[1]; |
| 209 | 209 | |
| 210 | - $var_temp = '0.0'; |
|
| 210 | + $var_temp = '0.0'; |
|
| 211 | 211 | |
| 212 | 212 | for ( $i = strlen( $_month ); $i > 2; $i-- ) { |
| 213 | 213 | |
| 214 | 214 | $var_temp .= '0'; |
| 215 | 215 | |
| 216 | - } |
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | - $var_temp .= '1'; |
|
| 218 | + $var_temp .= '1'; |
|
| 219 | 219 | |
| 220 | 220 | $_month = $_month * $var_temp ; |
| 221 | 221 | |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | |
| 232 | 232 | for ( $i = strlen( $_day ); $i > 2; $i-- ) { |
| 233 | 233 | |
| 234 | - $var_temp .= '0' ; |
|
| 234 | + $var_temp .= '0' ; |
|
| 235 | 235 | |
| 236 | 236 | } |
| 237 | 237 | |
@@ -245,17 +245,17 @@ discard block |
||
| 245 | 245 | |
| 246 | 246 | $this->day = $_day[0]; |
| 247 | 247 | |
| 248 | - $this->date_time->setDate( $this->year, $this->month, $this->day ); |
|
| 248 | + $this->date_time->setDate( $this->year, $this->month, $this->day ); |
|
| 249 | 249 | |
| 250 | - return $this->date_time; |
|
| 250 | + return $this->date_time; |
|
| 251 | 251 | |
| 252 | 252 | } |
| 253 | 253 | |
| 254 | 254 | /** |
| 255 | - *convert hijri year to jalali year |
|
| 256 | - * @since Oct, 17 2015 |
|
| 257 | - * @return object |
|
| 258 | - */ |
|
| 255 | + *convert hijri year to jalali year |
|
| 256 | + * @since Oct, 17 2015 |
|
| 257 | + * @return object |
|
| 258 | + */ |
|
| 259 | 259 | public function hijriToJalali( $date_time ) { |
| 260 | 260 | |
| 261 | 261 | $this->date_time = $date_time; |
@@ -305,15 +305,15 @@ discard block |
||
| 305 | 305 | |
| 306 | 306 | $this->date_time->setDate( $jalali_year, $jalali_month, $jalali_day ); |
| 307 | 307 | |
| 308 | - return $this->date_time; |
|
| 308 | + return $this->date_time; |
|
| 309 | 309 | |
| 310 | 310 | } |
| 311 | 311 | |
| 312 | 312 | /** |
| 313 | - * convert hijri year to gregorian year |
|
| 314 | - * @since Oct, 17 2015 |
|
| 315 | - * @return object |
|
| 316 | - */ |
|
| 313 | + * convert hijri year to gregorian year |
|
| 314 | + * @since Oct, 17 2015 |
|
| 315 | + * @return object |
|
| 316 | + */ |
|
| 317 | 317 | public function hijriToGregorian( $date_time ) { |
| 318 | 318 | |
| 319 | 319 | $this->date_time = $date_time; |
@@ -363,7 +363,7 @@ discard block |
||
| 363 | 363 | |
| 364 | 364 | $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day ); |
| 365 | 365 | |
| 366 | - return $this->date_time; |
|
| 366 | + return $this->date_time; |
|
| 367 | 367 | |
| 368 | 368 | } |
| 369 | 369 | |
@@ -56,6 +56,10 @@ |
||
| 56 | 56 | * |
| 57 | 57 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ |
| 58 | 58 | */ |
| 59 | + |
|
| 60 | + /** |
|
| 61 | + * @param string $path |
|
| 62 | + */ |
|
| 59 | 63 | private function fetch( $path ) { |
| 60 | 64 | |
| 61 | 65 | $this->events = include( $path ); |
@@ -8,47 +8,47 @@ discard block |
||
| 8 | 8 | |
| 9 | 9 | class Events { |
| 10 | 10 | |
| 11 | - private $local; |
|
| 11 | + private $local; |
|
| 12 | 12 | |
| 13 | - private $events; |
|
| 13 | + private $events; |
|
| 14 | 14 | |
| 15 | - private $date_time; |
|
| 15 | + private $date_time; |
|
| 16 | 16 | |
| 17 | - private $convert; |
|
| 17 | + private $convert; |
|
| 18 | 18 | |
| 19 | - private $result; |
|
| 19 | + private $result; |
|
| 20 | 20 | |
| 21 | - private $period; |
|
| 21 | + private $period; |
|
| 22 | 22 | |
| 23 | - private $interval; |
|
| 23 | + private $interval; |
|
| 24 | 24 | |
| 25 | - private static $date_start; |
|
| 25 | + private static $date_start; |
|
| 26 | 26 | |
| 27 | - private static $date_end; |
|
| 27 | + private static $date_end; |
|
| 28 | 28 | |
| 29 | - public function __construct( $date_time, $date_end = NULL ) { |
|
| 29 | + public function __construct( $date_time, $date_end = NULL ) { |
|
| 30 | 30 | |
| 31 | - if( $date_end !== NULL ) { |
|
| 31 | + if( $date_end !== NULL ) { |
|
| 32 | 32 | |
| 33 | - Events::$date_start = $date_time; |
|
| 33 | + Events::$date_start = $date_time; |
|
| 34 | 34 | |
| 35 | - Events::$date_end = $date_end; |
|
| 35 | + Events::$date_end = $date_end; |
|
| 36 | 36 | |
| 37 | - } else { |
|
| 37 | + } else { |
|
| 38 | 38 | |
| 39 | - Events::$date_start = $date_time; |
|
| 39 | + Events::$date_start = $date_time; |
|
| 40 | 40 | |
| 41 | - } |
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | - $this->convert = new Convert; |
|
| 43 | + $this->convert = new Convert; |
|
| 44 | 44 | |
| 45 | - $this->date_time = new DateTime(); |
|
| 45 | + $this->date_time = new DateTime(); |
|
| 46 | 46 | |
| 47 | - return $this; |
|
| 47 | + return $this; |
|
| 48 | 48 | |
| 49 | - } |
|
| 49 | + } |
|
| 50 | 50 | |
| 51 | - /************************************************************ |
|
| 51 | + /************************************************************ |
|
| 52 | 52 | * Fetch Events array from own array file |
| 53 | 53 | ************************************************************ |
| 54 | 54 | * |
@@ -56,27 +56,27 @@ discard block |
||
| 56 | 56 | * |
| 57 | 57 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ |
| 58 | 58 | */ |
| 59 | - private function fetch( $path ) { |
|
| 59 | + private function fetch( $path ) { |
|
| 60 | 60 | |
| 61 | - $this->events = include( $path ); |
|
| 61 | + $this->events = include( $path ); |
|
| 62 | 62 | |
| 63 | - $this->interval = DateInterval::createFromDateString('1 day'); |
|
| 63 | + $this->interval = DateInterval::createFromDateString('1 day'); |
|
| 64 | 64 | |
| 65 | - $this->period = new DatePeriod( Events::$date_start, $this->interval, Events::$date_end ); |
|
| 65 | + $this->period = new DatePeriod( Events::$date_start, $this->interval, Events::$date_end ); |
|
| 66 | 66 | |
| 67 | - foreach ( $this->period as $dt ) { |
|
| 67 | + foreach ( $this->period as $dt ) { |
|
| 68 | 68 | |
| 69 | - if ( isset( $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ] ) ) { |
|
| 69 | + if ( isset( $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ] ) ) { |
|
| 70 | 70 | |
| 71 | - $this->result[ $dt->format( 'Y-m-d' ) ][] = $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ]; |
|
| 71 | + $this->result[ $dt->format( 'Y-m-d' ) ][] = $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ]; |
|
| 72 | 72 | |
| 73 | - } |
|
| 73 | + } |
|
| 74 | 74 | |
| 75 | - } |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | - } |
|
| 77 | + } |
|
| 78 | 78 | |
| 79 | - /************************************************************ |
|
| 79 | + /************************************************************ |
|
| 80 | 80 | * Return Array of Events |
| 81 | 81 | ************************************************************ |
| 82 | 82 | * |
@@ -85,31 +85,31 @@ discard block |
||
| 85 | 85 | * |
| 86 | 86 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ |
| 87 | 87 | */ |
| 88 | - public function get() { |
|
| 88 | + public function get() { |
|
| 89 | 89 | |
| 90 | - if( ! empty( $this->result ) ) { |
|
| 90 | + if( ! empty( $this->result ) ) { |
|
| 91 | 91 | |
| 92 | - foreach( $this->result as $key => $day ) { |
|
| 92 | + foreach( $this->result as $key => $day ) { |
|
| 93 | 93 | |
| 94 | - if ( ! ( $key > Events::$date_start->format( 'Y-m-d' ) && $key < Events::$date_end->format( 'Y-m-d' ) ) ) { |
|
| 94 | + if ( ! ( $key > Events::$date_start->format( 'Y-m-d' ) && $key < Events::$date_end->format( 'Y-m-d' ) ) ) { |
|
| 95 | 95 | |
| 96 | - unset( $this->result[ $key ] ); |
|
| 96 | + unset( $this->result[ $key ] ); |
|
| 97 | 97 | |
| 98 | - } |
|
| 98 | + } |
|
| 99 | 99 | |
| 100 | - } |
|
| 100 | + } |
|
| 101 | 101 | |
| 102 | - } else { |
|
| 102 | + } else { |
|
| 103 | 103 | |
| 104 | - $this->result = array(); |
|
| 104 | + $this->result = array(); |
|
| 105 | 105 | |
| 106 | - } |
|
| 106 | + } |
|
| 107 | 107 | |
| 108 | - return $this->result; |
|
| 108 | + return $this->result; |
|
| 109 | 109 | |
| 110 | - } |
|
| 110 | + } |
|
| 111 | 111 | |
| 112 | - /************************************************************ |
|
| 112 | + /************************************************************ |
|
| 113 | 113 | * Return local events - with day start and end as an array |
| 114 | 114 | ************************************************************ |
| 115 | 115 | * |
@@ -118,72 +118,72 @@ discard block |
||
| 118 | 118 | * |
| 119 | 119 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ |
| 120 | 120 | */ |
| 121 | - public function local( $country_code = "ir" ) { |
|
| 121 | + public function local( $country_code = "ir" ) { |
|
| 122 | 122 | |
| 123 | - /* |
|
| 123 | + /* |
|
| 124 | 124 | * Capitalize the first character of $country_code according the file |
| 125 | 125 | * structure. |
| 126 | 126 | */ |
| 127 | - $country_code = strtolower( $country_code = 'ir' ) ; |
|
| 127 | + $country_code = strtolower( $country_code = 'ir' ) ; |
|
| 128 | 128 | |
| 129 | - $this->local = include( 'Localization/' . $country_code . '.php' ); |
|
| 129 | + $this->local = include( 'Localization/' . $country_code . '.php' ); |
|
| 130 | 130 | |
| 131 | - foreach( $this->local[ 'events' ] as $month => $events ) { |
|
| 131 | + foreach( $this->local[ 'events' ] as $month => $events ) { |
|
| 132 | 132 | |
| 133 | - foreach( $events as $day => $event ){ |
|
| 133 | + foreach( $events as $day => $event ){ |
|
| 134 | 134 | |
| 135 | - $this->date_time = new DateTime(); |
|
| 135 | + $this->date_time = new DateTime(); |
|
| 136 | 136 | |
| 137 | - $this->date_time->setDate( Events::$date_start->format( 'Y' ), $month, $day ); |
|
| 137 | + $this->date_time->setDate( Events::$date_start->format( 'Y' ), $month, $day ); |
|
| 138 | 138 | |
| 139 | - switch ( $this->local[ 'default_calendar' ] ) { |
|
| 139 | + switch ( $this->local[ 'default_calendar' ] ) { |
|
| 140 | 140 | |
| 141 | - case 'jalali': |
|
| 141 | + case 'jalali': |
|
| 142 | 142 | |
| 143 | - $this->date_time->setDate( 1394, $month, $day ); |
|
| 143 | + $this->date_time->setDate( 1394, $month, $day ); |
|
| 144 | 144 | |
| 145 | - $this->date_time = Datium::create( $this->date_time )->from( 'jalali' )->to( 'gregorian' )->object(); //$this->convert->jalaliToGregorian( $this->date_time ); |
|
| 145 | + $this->date_time = Datium::create( $this->date_time )->from( 'jalali' )->to( 'gregorian' )->object(); //$this->convert->jalaliToGregorian( $this->date_time ); |
|
| 146 | 146 | |
| 147 | - break; |
|
| 147 | + break; |
|
| 148 | 148 | |
| 149 | - case 'hijri': |
|
| 149 | + case 'hijri': |
|
| 150 | 150 | |
| 151 | - $this->date_time = Datium::create( $this->date_time )->from( 'hijri' )->to( 'gregorian' )->object(); // $this->convert->hijriToGregorian( $this->date_time ); |
|
| 151 | + $this->date_time = Datium::create( $this->date_time )->from( 'hijri' )->to( 'gregorian' )->object(); // $this->convert->hijriToGregorian( $this->date_time ); |
|
| 152 | 152 | |
| 153 | - break; |
|
| 153 | + break; |
|
| 154 | 154 | |
| 155 | - } |
|
| 155 | + } |
|
| 156 | 156 | |
| 157 | - $this->result[ $this->date_time->format( 'Y-m-d' ) ][] = $event; |
|
| 157 | + $this->result[ $this->date_time->format( 'Y-m-d' ) ][] = $event; |
|
| 158 | 158 | |
| 159 | - } |
|
| 159 | + } |
|
| 160 | 160 | |
| 161 | - } |
|
| 161 | + } |
|
| 162 | 162 | |
| 163 | - ksort( $this->result ); |
|
| 163 | + ksort( $this->result ); |
|
| 164 | 164 | |
| 165 | - return $this; |
|
| 165 | + return $this; |
|
| 166 | 166 | |
| 167 | - } |
|
| 167 | + } |
|
| 168 | 168 | |
| 169 | - public function weekend() { |
|
| 169 | + public function weekend() { |
|
| 170 | 170 | |
| 171 | - return 0; |
|
| 171 | + return 0; |
|
| 172 | 172 | |
| 173 | - } |
|
| 173 | + } |
|
| 174 | 174 | |
| 175 | - public function relagious() { |
|
| 175 | + public function relagious() { |
|
| 176 | 176 | |
| 177 | - return 0; |
|
| 177 | + return 0; |
|
| 178 | 178 | |
| 179 | - } |
|
| 179 | + } |
|
| 180 | 180 | |
| 181 | - public function international() { |
|
| 181 | + public function international() { |
|
| 182 | 182 | |
| 183 | - $this->fetch( 'Global/global.php' ); |
|
| 183 | + $this->fetch( 'Global/global.php' ); |
|
| 184 | 184 | |
| 185 | - return $this; |
|
| 185 | + return $this; |
|
| 186 | 186 | |
| 187 | - } |
|
| 187 | + } |
|
| 188 | 188 | |
| 189 | 189 | } |
@@ -100,7 +100,7 @@ |
||
| 100 | 100 | /** |
| 101 | 101 | * check the ghamari year is leap or not |
| 102 | 102 | * @since Oct, 24 2015 |
| 103 | - * @return boolean |
|
| 103 | + * @return integer|null |
|
| 104 | 104 | */ |
| 105 | 105 | public function ghamariLeapYear() { |
| 106 | 106 | |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | /** |
| 9 | 9 | * @param integer store year value |
| 10 | 10 | */ |
| 11 | - protected $year; |
|
| 11 | + protected $year; |
|
| 12 | 12 | |
| 13 | 13 | /** |
| 14 | 14 | * @param string store type of year value |
@@ -25,15 +25,15 @@ discard block |
||
| 25 | 25 | * @param $year integer |
| 26 | 26 | * @since Aug, 21 2015 |
| 27 | 27 | */ |
| 28 | - public function __construct( $year, $type = 'gregorian' ) { |
|
| 28 | + public function __construct( $year, $type = 'gregorian' ) { |
|
| 29 | 29 | |
| 30 | - $this->year = $year; |
|
| 30 | + $this->year = $year; |
|
| 31 | 31 | |
| 32 | 32 | $this->type = $type; |
| 33 | 33 | |
| 34 | 34 | return $this; |
| 35 | 35 | |
| 36 | - } |
|
| 36 | + } |
|
| 37 | 37 | |
| 38 | 38 | /** |
| 39 | 39 | * check the gregorian year is leap or not |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | */ |
| 54 | 54 | public function jalaliLeapYear() { |
| 55 | 55 | |
| 56 | - $jalali_years = 0; |
|
| 56 | + $jalali_years = 0; |
|
| 57 | 57 | |
| 58 | 58 | while ( $jalali_years < ( $this->year - 128 ) ) { |
| 59 | 59 | |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | |
| 71 | 71 | $this->result = $this->result % 33; |
| 72 | 72 | |
| 73 | - } |
|
| 73 | + } |
|
| 74 | 74 | |
| 75 | 75 | if ( ( $this->result == 28 ) || ( $this->result == 27 ) ) { |
| 76 | 76 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | |
| 88 | 88 | $this->result = $this->result % 33; |
| 89 | 89 | |
| 90 | - } |
|
| 90 | + } |
|
| 91 | 91 | |
| 92 | 92 | if ( ( ( $this->result % 4 ) == 0 ) && ( $this->result != 28 ) ) { |
| 93 | 93 | |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | $this->result = $this->jalaliLeapYear(); |
| 134 | 134 | |
| 135 | - break; |
|
| 135 | + break; |
|
| 136 | 136 | |
| 137 | 137 | case 'hijri': |
| 138 | 138 | |
@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | return array( |
| 4 | 4 | |
| 5 | - 'events' => array( 'nowruz' => 'عید نوروز', |
|
| 5 | + 'events' => array( 'nowruz' => 'عید نوروز', |
|
| 6 | 6 | |
| 7 | 7 | 'iran_national_day' => 'روز جمهوری اسلامی', |
| 8 | 8 | |
@@ -12,16 +12,16 @@ discard block |
||
| 12 | 12 | 'month' => array( |
| 13 | 13 | 'فروردین', |
| 14 | 14 | 'اردیبهشت', |
| 15 | - 'خرداد', |
|
| 16 | - 'تیر', |
|
| 17 | - 'مرداد', |
|
| 18 | - 'شهریور', |
|
| 19 | - 'مهر', |
|
| 20 | - 'آبان', |
|
| 21 | - 'آذر', |
|
| 22 | - 'دی', |
|
| 23 | - 'بهمن', |
|
| 24 | - 'اسفند', |
|
| 15 | + 'خرداد', |
|
| 16 | + 'تیر', |
|
| 17 | + 'مرداد', |
|
| 18 | + 'شهریور', |
|
| 19 | + 'مهر', |
|
| 20 | + 'آبان', |
|
| 21 | + 'آذر', |
|
| 22 | + 'دی', |
|
| 23 | + 'بهمن', |
|
| 24 | + 'اسفند', |
|
| 25 | 25 | ), |
| 26 | 26 | |
| 27 | 27 | 'week_days_name' => array( |
@@ -341,6 +341,10 @@ |
||
| 341 | 341 | return $file; |
| 342 | 342 | } |
| 343 | 343 | |
| 344 | + /** |
|
| 345 | + * @param string $class |
|
| 346 | + * @param string $ext |
|
| 347 | + */ |
|
| 344 | 348 | private function findFileWithExtension($class, $ext) |
| 345 | 349 | { |
| 346 | 350 | // PSR-4 lookup |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | /** |
| 144 | 144 | * Get current datetime |
| 145 | 145 | * @since Aug 17 2015 |
| 146 | - * @return object |
|
| 146 | + * @return Datium |
|
| 147 | 147 | */ |
| 148 | 148 | public static function now() { |
| 149 | 149 | |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | * @param $hour integer |
| 162 | 162 | * @param $minute integer |
| 163 | 163 | * @param $second integer |
| 164 | - * @return object |
|
| 164 | + * @return Datium |
|
| 165 | 165 | */ |
| 166 | 166 | public static function create( $year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0 ) { |
| 167 | 167 | |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | /** |
| 231 | 231 | * Add new date value to current date |
| 232 | 232 | * @param $value string |
| 233 | - * @return object |
|
| 233 | + * @return Datium |
|
| 234 | 234 | */ |
| 235 | 235 | public function add( $value ) { |
| 236 | 236 | |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | /** |
| 248 | 248 | * Sub date from current date |
| 249 | 249 | * @param $value |
| 250 | - * @return obejct |
|
| 250 | + * @return Datium |
|
| 251 | 251 | */ |
| 252 | 252 | public function sub( $value ) { |
| 253 | 253 | |
@@ -263,7 +263,7 @@ discard block |
||
| 263 | 263 | |
| 264 | 264 | /** |
| 265 | 265 | * Check if current year is leap or not |
| 266 | - * @return boolean |
|
| 266 | + * @return Leap |
|
| 267 | 267 | */ |
| 268 | 268 | public function leap( $type = 'gregorian') { |
| 269 | 269 | |
@@ -125,4 +125,4 @@ |
||
| 125 | 125 | */ |
| 126 | 126 | 'weekend' => array( 'friday' ) |
| 127 | 127 | |
| 128 | - ); |
|
| 128 | + ); |
|
@@ -1,20 +1,20 @@ discard block |
||
| 1 | 1 | ``<?php |
| 2 | 2 | |
| 3 | - use Datium\Datium as Datium; |
|
| 3 | + use Datium\Datium as Datium; |
|
| 4 | 4 | |
| 5 | - return array ( |
|
| 5 | + return array ( |
|
| 6 | 6 | |
| 7 | - 'numbers' => array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'), |
|
| 7 | + 'numbers' => array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'), |
|
| 8 | 8 | |
| 9 | - 'am_time' => 'AM', |
|
| 9 | + 'am_time' => 'AM', |
|
| 10 | 10 | |
| 11 | - 'pm_time' => 'PM', |
|
| 11 | + 'pm_time' => 'PM', |
|
| 12 | 12 | |
| 13 | - 'end_of_days' => array( 'th', 'st', 'nd', 'rd' ), |
|
| 13 | + 'end_of_days' => array( 'th', 'st', 'nd', 'rd' ), |
|
| 14 | 14 | |
| 15 | 15 | |
| 16 | 16 | |
| 17 | - /************************************************************ |
|
| 17 | + /************************************************************ |
|
| 18 | 18 | * Convert to |
| 19 | 19 | ************************************************************ |
| 20 | 20 | * |
@@ -22,13 +22,13 @@ discard block |
||
| 22 | 22 | * |
| 23 | 23 | *\_________________________________________________________/ |
| 24 | 24 | */ |
| 25 | - 'convert_to' => function( $date_time ) { |
|
| 25 | + 'convert_to' => function( $date_time ) { |
|
| 26 | 26 | |
| 27 | - return null; |
|
| 27 | + return null; |
|
| 28 | 28 | |
| 29 | - }, |
|
| 29 | + }, |
|
| 30 | 30 | |
| 31 | - /************************************************************ |
|
| 31 | + /************************************************************ |
|
| 32 | 32 | * Convert From |
| 33 | 33 | ************************************************************ |
| 34 | 34 | * |
@@ -36,13 +36,13 @@ discard block |
||
| 36 | 36 | * |
| 37 | 37 | *\_________________________________________________________/ |
| 38 | 38 | */ |
| 39 | - 'convert_from' => function( $date_time ) { |
|
| 39 | + 'convert_from' => function( $date_time ) { |
|
| 40 | 40 | |
| 41 | - return null; |
|
| 41 | + return null; |
|
| 42 | 42 | |
| 43 | - }, |
|
| 43 | + }, |
|
| 44 | 44 | |
| 45 | - /************************************************************ |
|
| 45 | + /************************************************************ |
|
| 46 | 46 | * Shorthand for jalali calendar |
| 47 | 47 | ************************************************************ |
| 48 | 48 | * |
@@ -50,9 +50,9 @@ discard block |
||
| 50 | 50 | * |
| 51 | 51 | *\_________________________________________________________/ |
| 52 | 52 | */ |
| 53 | - 'shorthand' => 'gr', |
|
| 53 | + 'shorthand' => 'gr', |
|
| 54 | 54 | |
| 55 | - /************************************************************ |
|
| 55 | + /************************************************************ |
|
| 56 | 56 | * Month's name |
| 57 | 57 | ************************************************************ |
| 58 | 58 | * |
@@ -86,9 +86,9 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | 'December' |
| 88 | 88 | |
| 89 | - ), |
|
| 89 | + ), |
|
| 90 | 90 | |
| 91 | - /************************************************************ |
|
| 91 | + /************************************************************ |
|
| 92 | 92 | * Days of Week |
| 93 | 93 | ************************************************************ |
| 94 | 94 | * |
@@ -97,55 +97,55 @@ discard block |
||
| 97 | 97 | * |
| 98 | 98 | *\_________________________________________________________/ |
| 99 | 99 | */ |
| 100 | - 'days_of_week' => array ( |
|
| 100 | + 'days_of_week' => array ( |
|
| 101 | 101 | |
| 102 | - 'Monday', |
|
| 103 | - 'Tuesday', |
|
| 104 | - 'Wednesday', |
|
| 105 | - 'Thursday', |
|
| 106 | - 'Friday', |
|
| 107 | - 'Saturday', |
|
| 108 | - 'Sunday', |
|
| 109 | - ), |
|
| 102 | + 'Monday', |
|
| 103 | + 'Tuesday', |
|
| 104 | + 'Wednesday', |
|
| 105 | + 'Thursday', |
|
| 106 | + 'Friday', |
|
| 107 | + 'Saturday', |
|
| 108 | + 'Sunday', |
|
| 109 | + ), |
|
| 110 | 110 | |
| 111 | 111 | |
| 112 | - 'month_days_number' => array( 1 => 31, |
|
| 113 | - 2 => 28, |
|
| 114 | - 3 => 31, |
|
| 115 | - 4 => 30, |
|
| 116 | - 5 => 31, |
|
| 117 | - 6 => 30, |
|
| 118 | - 7 => 31, |
|
| 119 | - 8 => 31, |
|
| 120 | - 9 => 30, |
|
| 121 | - 10 => 31, |
|
| 122 | - 11 => 30, |
|
| 123 | - 12 => 30 ), |
|
| 112 | + 'month_days_number' => array( 1 => 31, |
|
| 113 | + 2 => 28, |
|
| 114 | + 3 => 31, |
|
| 115 | + 4 => 30, |
|
| 116 | + 5 => 31, |
|
| 117 | + 6 => 30, |
|
| 118 | + 7 => 31, |
|
| 119 | + 8 => 31, |
|
| 120 | + 9 => 30, |
|
| 121 | + 10 => 31, |
|
| 122 | + 11 => 30, |
|
| 123 | + 12 => 30 ), |
|
| 124 | 124 | |
| 125 | 125 | |
| 126 | - 'day_of_year' => function( $date_time ) { |
|
| 126 | + 'day_of_year' => function( $date_time ) { |
|
| 127 | 127 | |
| 128 | - $result = null; |
|
| 128 | + $result = null; |
|
| 129 | 129 | |
| 130 | - $_month = null; |
|
| 130 | + $_month = null; |
|
| 131 | 131 | |
| 132 | - $config = include( 'Gregorian.php' ); |
|
| 132 | + $config = include( 'Gregorian.php' ); |
|
| 133 | 133 | |
| 134 | - $month = $date_time->format('n'); |
|
| 134 | + $month = $date_time->format('n'); |
|
| 135 | 135 | |
| 136 | - $day = $date_time->format('d'); |
|
| 136 | + $day = $date_time->format('d'); |
|
| 137 | 137 | |
| 138 | - foreach( $config['month_days_number'] as $_month => $value ) { |
|
| 138 | + foreach( $config['month_days_number'] as $_month => $value ) { |
|
| 139 | 139 | |
| 140 | - if ( $_month < $month ) $result += $value; |
|
| 140 | + if ( $_month < $month ) $result += $value; |
|
| 141 | 141 | |
| 142 | - } |
|
| 142 | + } |
|
| 143 | 143 | |
| 144 | - $result += $day; |
|
| 144 | + $result += $day; |
|
| 145 | 145 | |
| 146 | - return $result; |
|
| 146 | + return $result; |
|
| 147 | 147 | |
| 148 | - }, |
|
| 148 | + }, |
|
| 149 | 149 | |
| 150 | 150 | 'day_of_week' => function( $date_time ) { |
| 151 | 151 | |
@@ -159,9 +159,9 @@ discard block |
||
| 159 | 159 | |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - }, |
|
| 162 | + }, |
|
| 163 | 163 | |
| 164 | - /************************************************************ |
|
| 164 | + /************************************************************ |
|
| 165 | 165 | * Leap year |
| 166 | 166 | ************************************************************ |
| 167 | 167 | * |
@@ -169,9 +169,9 @@ discard block |
||
| 169 | 169 | * |
| 170 | 170 | *\_________________________________________________________/ |
| 171 | 171 | */ |
| 172 | - 'leap_year' => null, |
|
| 172 | + 'leap_year' => null, |
|
| 173 | 173 | |
| 174 | - /************************************************************ |
|
| 174 | + /************************************************************ |
|
| 175 | 175 | * Weekend |
| 176 | 176 | ************************************************************ |
| 177 | 177 | * |
@@ -179,6 +179,6 @@ discard block |
||
| 179 | 179 | * |
| 180 | 180 | *\_________________________________________________________/ |
| 181 | 181 | */ |
| 182 | - 'weekend' => array( 'saturday', 'sunday' ), |
|
| 182 | + 'weekend' => array( 'saturday', 'sunday' ), |
|
| 183 | 183 | |
| 184 | 184 | ); |
@@ -2,23 +2,23 @@ |
||
| 2 | 2 | |
| 3 | 3 | return array( |
| 4 | 4 | |
| 5 | - 'events' => array( 'eid fitr' => 'عيد الفطر', |
|
| 5 | + 'events' => array( 'eid fitr' => 'عيد الفطر', |
|
| 6 | 6 | |
| 7 | 7 | ), |
| 8 | 8 | |
| 9 | 9 | 'month' => array( |
| 10 | 10 | 'مُحَرَّم', |
| 11 | 11 | 'صَفَر', |
| 12 | - 'رَبيع الأوّل', |
|
| 13 | - 'رَبيع الآخر', |
|
| 14 | - 'جُمادى الأولى', |
|
| 15 | - 'جُمادى الآخرة', |
|
| 16 | - 'رَجَب', |
|
| 17 | - 'شَعْبان', |
|
| 18 | - 'رَمَضان', |
|
| 19 | - 'شَوّال', |
|
| 20 | - 'ذو القِعْدة', |
|
| 21 | - 'ذو الحِجّة' |
|
| 12 | + 'رَبيع الأوّل', |
|
| 13 | + 'رَبيع الآخر', |
|
| 14 | + 'جُمادى الأولى', |
|
| 15 | + 'جُمادى الآخرة', |
|
| 16 | + 'رَجَب', |
|
| 17 | + 'شَعْبان', |
|
| 18 | + 'رَمَضان', |
|
| 19 | + 'شَوّال', |
|
| 20 | + 'ذو القِعْدة', |
|
| 21 | + 'ذو الحِجّة' |
|
| 22 | 22 | ), |
| 23 | 23 | |
| 24 | 24 | 'days_of_week' => array( |