@@ -6,6 +6,6 @@ |
||
6 | 6 | $baseDir = dirname($vendorDir); |
7 | 7 | |
8 | 8 | return array( |
9 | - 'Datium\\Tools\\' => array($baseDir . '/src'), |
|
10 | - 'Datium\\' => array($baseDir . '/src', $baseDir . '/src/Events'), |
|
9 | + 'Datium\\Tools\\' => array($baseDir.'/src'), |
|
10 | + 'Datium\\' => array($baseDir.'/src', $baseDir.'/src/Events'), |
|
11 | 11 | ); |
@@ -1,7 +1,5 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | - use Datium\Datium as Datium; |
|
4 | - |
|
5 | 3 | return array ( |
6 | 4 | |
7 | 5 | /************************************************************ |
@@ -131,7 +131,9 @@ |
||
131 | 131 | |
132 | 132 | foreach( $config['month_days_number'] as $month => $value ) { |
133 | 133 | |
134 | - if ( $_month < $month ) $result += $value; |
|
134 | + if ( $_month < $month ) { |
|
135 | + $result += $value; |
|
136 | + } |
|
135 | 137 | |
136 | 138 | } |
137 | 139 |
@@ -1,10 +1,10 @@ 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 | - /************************************************************ |
|
7 | + /************************************************************ |
|
8 | 8 | * Convert to |
9 | 9 | ************************************************************ |
10 | 10 | * |
@@ -12,13 +12,13 @@ discard block |
||
12 | 12 | * |
13 | 13 | *\_________________________________________________________/ |
14 | 14 | */ |
15 | - 'convert_to' => function( $date_time ) { |
|
15 | + 'convert_to' => function( $date_time ) { |
|
16 | 16 | |
17 | - return null; |
|
17 | + return null; |
|
18 | 18 | |
19 | - }, |
|
19 | + }, |
|
20 | 20 | |
21 | - /************************************************************ |
|
21 | + /************************************************************ |
|
22 | 22 | * Convert From |
23 | 23 | ************************************************************ |
24 | 24 | * |
@@ -26,13 +26,13 @@ discard block |
||
26 | 26 | * |
27 | 27 | *\_________________________________________________________/ |
28 | 28 | */ |
29 | - 'convert_from' => function( $date_time ) { |
|
29 | + 'convert_from' => function( $date_time ) { |
|
30 | 30 | |
31 | - return null; |
|
31 | + return null; |
|
32 | 32 | |
33 | - }, |
|
33 | + }, |
|
34 | 34 | |
35 | - /************************************************************ |
|
35 | + /************************************************************ |
|
36 | 36 | * Shorthand for jalali calendar |
37 | 37 | ************************************************************ |
38 | 38 | * |
@@ -40,9 +40,9 @@ discard block |
||
40 | 40 | * |
41 | 41 | *\_________________________________________________________/ |
42 | 42 | */ |
43 | - 'shorthand' => 'gr', |
|
43 | + 'shorthand' => 'gr', |
|
44 | 44 | |
45 | - /************************************************************ |
|
45 | + /************************************************************ |
|
46 | 46 | * Month's name |
47 | 47 | ************************************************************ |
48 | 48 | * |
@@ -76,9 +76,9 @@ discard block |
||
76 | 76 | |
77 | 77 | 'December' |
78 | 78 | |
79 | - ), |
|
79 | + ), |
|
80 | 80 | |
81 | - /************************************************************ |
|
81 | + /************************************************************ |
|
82 | 82 | * Days of Week |
83 | 83 | ************************************************************ |
84 | 84 | * |
@@ -87,63 +87,63 @@ discard block |
||
87 | 87 | * |
88 | 88 | *\_________________________________________________________/ |
89 | 89 | */ |
90 | - 'days_of_week' => array ( |
|
90 | + 'days_of_week' => array ( |
|
91 | 91 | |
92 | - 'Saturday', |
|
92 | + 'Saturday', |
|
93 | 93 | |
94 | - 'Sunday', |
|
94 | + 'Sunday', |
|
95 | 95 | |
96 | - 'Monday', |
|
96 | + 'Monday', |
|
97 | 97 | |
98 | - 'Tuesday', |
|
98 | + 'Tuesday', |
|
99 | 99 | |
100 | - 'Wednesday', |
|
100 | + 'Wednesday', |
|
101 | 101 | |
102 | - 'Thursday', |
|
102 | + 'Thursday', |
|
103 | 103 | |
104 | - 'Friday' |
|
104 | + 'Friday' |
|
105 | 105 | |
106 | - ), |
|
106 | + ), |
|
107 | 107 | |
108 | - 'month_days_number' => array( 1 => 31, |
|
109 | - 2 => 28, |
|
110 | - 3 => 31, |
|
111 | - 4 => 30, |
|
112 | - 5 => 31, |
|
113 | - 6 => 30, |
|
114 | - 7 => 31, |
|
115 | - 8 => 31, |
|
116 | - 9 => 30, |
|
117 | - 10 => 31, |
|
118 | - 11 => 30, |
|
119 | - 12 => 30 ), |
|
108 | + 'month_days_number' => array( 1 => 31, |
|
109 | + 2 => 28, |
|
110 | + 3 => 31, |
|
111 | + 4 => 30, |
|
112 | + 5 => 31, |
|
113 | + 6 => 30, |
|
114 | + 7 => 31, |
|
115 | + 8 => 31, |
|
116 | + 9 => 30, |
|
117 | + 10 => 31, |
|
118 | + 11 => 30, |
|
119 | + 12 => 30 ), |
|
120 | 120 | |
121 | 121 | |
122 | - 'day_of_year' => function( $date_time ) { |
|
122 | + 'day_of_year' => function( $date_time ) { |
|
123 | 123 | |
124 | - $result = null; |
|
124 | + $result = null; |
|
125 | 125 | |
126 | - $_month = null; |
|
126 | + $_month = null; |
|
127 | 127 | |
128 | - $config = include( 'Gregorian.php' ); |
|
128 | + $config = include( 'Gregorian.php' ); |
|
129 | 129 | |
130 | - $month = $date_time->format('n'); |
|
130 | + $month = $date_time->format('n'); |
|
131 | 131 | |
132 | - $day = $date_time->format('d'); |
|
132 | + $day = $date_time->format('d'); |
|
133 | 133 | |
134 | - foreach( $config['month_days_number'] as $_month => $value ) { |
|
134 | + foreach( $config['month_days_number'] as $_month => $value ) { |
|
135 | 135 | |
136 | - if ( $_month < $month ) $result += $value; |
|
136 | + if ( $_month < $month ) $result += $value; |
|
137 | 137 | |
138 | - } |
|
138 | + } |
|
139 | 139 | |
140 | - $result += $this->day; |
|
140 | + $result += $this->day; |
|
141 | 141 | |
142 | - return $result + 1; |
|
142 | + return $result + 1; |
|
143 | 143 | |
144 | - }, |
|
144 | + }, |
|
145 | 145 | |
146 | - /************************************************************ |
|
146 | + /************************************************************ |
|
147 | 147 | * Leap year |
148 | 148 | ************************************************************ |
149 | 149 | * |
@@ -151,9 +151,9 @@ discard block |
||
151 | 151 | * |
152 | 152 | *\_________________________________________________________/ |
153 | 153 | */ |
154 | - 'leap_year' => null, |
|
154 | + 'leap_year' => null, |
|
155 | 155 | |
156 | - /************************************************************ |
|
156 | + /************************************************************ |
|
157 | 157 | * Weekend |
158 | 158 | ************************************************************ |
159 | 159 | * |
@@ -161,6 +161,6 @@ discard block |
||
161 | 161 | * |
162 | 162 | *\_________________________________________________________/ |
163 | 163 | */ |
164 | - 'weekend' => array( 'friday' ) |
|
164 | + 'weekend' => array( 'friday' ) |
|
165 | 165 | |
166 | 166 | ); |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | use Datium\Datium as Datium; |
4 | 4 | |
5 | - return array ( |
|
5 | + return array( |
|
6 | 6 | |
7 | 7 | /************************************************************ |
8 | 8 | * Convert to |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | * |
13 | 13 | *\_________________________________________________________/ |
14 | 14 | */ |
15 | - 'convert_to' => function( $date_time ) { |
|
15 | + 'convert_to' => function($date_time) { |
|
16 | 16 | |
17 | 17 | return null; |
18 | 18 | |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * |
27 | 27 | *\_________________________________________________________/ |
28 | 28 | */ |
29 | - 'convert_from' => function( $date_time ) { |
|
29 | + 'convert_from' => function($date_time) { |
|
30 | 30 | |
31 | 31 | return null; |
32 | 32 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * |
88 | 88 | *\_________________________________________________________/ |
89 | 89 | */ |
90 | - 'days_of_week' => array ( |
|
90 | + 'days_of_week' => array( |
|
91 | 91 | |
92 | 92 | 'Saturday', |
93 | 93 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | |
106 | 106 | ), |
107 | 107 | |
108 | - 'month_days_number' => array( 1 => 31, |
|
108 | + 'month_days_number' => array(1 => 31, |
|
109 | 109 | 2 => 28, |
110 | 110 | 3 => 31, |
111 | 111 | 4 => 30, |
@@ -116,24 +116,24 @@ discard block |
||
116 | 116 | 9 => 30, |
117 | 117 | 10 => 31, |
118 | 118 | 11 => 30, |
119 | - 12 => 30 ), |
|
119 | + 12 => 30), |
|
120 | 120 | |
121 | 121 | |
122 | - 'day_of_year' => function( $date_time ) { |
|
122 | + 'day_of_year' => function($date_time) { |
|
123 | 123 | |
124 | 124 | $result = null; |
125 | 125 | |
126 | 126 | $_month = null; |
127 | 127 | |
128 | - $config = include( 'Gregorian.php' ); |
|
128 | + $config = include('Gregorian.php'); |
|
129 | 129 | |
130 | 130 | $month = $date_time->format('n'); |
131 | 131 | |
132 | 132 | $day = $date_time->format('d'); |
133 | 133 | |
134 | - foreach( $config['month_days_number'] as $_month => $value ) { |
|
134 | + foreach ($config['month_days_number'] as $_month => $value) { |
|
135 | 135 | |
136 | - if ( $_month < $month ) $result += $value; |
|
136 | + if ($_month < $month) $result += $value; |
|
137 | 137 | |
138 | 138 | } |
139 | 139 | |
@@ -161,6 +161,6 @@ discard block |
||
161 | 161 | * |
162 | 162 | *\_________________________________________________________/ |
163 | 163 | */ |
164 | - 'weekend' => array( 'friday' ) |
|
164 | + 'weekend' => array('friday') |
|
165 | 165 | |
166 | 166 | ); |
@@ -34,7 +34,9 @@ discard block |
||
34 | 34 | |
35 | 35 | $leap = new Datium\Tools\Leap( $year ); |
36 | 36 | |
37 | - if( $leap->get() && $month > 11 ) $temp_day++; |
|
37 | + if( $leap->get() && $month > 11 ) { |
|
38 | + $temp_day++; |
|
39 | + } |
|
38 | 40 | |
39 | 41 | $_year = ( ( ( ( ( $year - 1 ) * 365.2422 ) + $temp_day ) - 119) / 354.3670 ) + 1; |
40 | 42 | |
@@ -110,7 +112,9 @@ discard block |
||
110 | 112 | |
111 | 113 | foreach ( $config['month_days_number'] as $month => $value ) { |
112 | 114 | |
113 | - if( $month > $month ) $days_of_year += $value; |
|
115 | + if( $month > $month ) { |
|
116 | + $days_of_year += $value; |
|
117 | + } |
|
114 | 118 | |
115 | 119 | } |
116 | 120 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | - return array ( |
|
3 | + return array( |
|
4 | 4 | |
5 | 5 | /************************************************************ |
6 | 6 | * Convert to |
@@ -10,11 +10,11 @@ discard block |
||
10 | 10 | * |
11 | 11 | *\_________________________________________________________/ |
12 | 12 | */ |
13 | - 'convert_to' => function( $date_time ) { |
|
13 | + 'convert_to' => function($date_time) { |
|
14 | 14 | |
15 | - $config = include( 'Shamsi.php' ); |
|
15 | + $config = include('Shamsi.php'); |
|
16 | 16 | |
17 | - $date_time = Datium\Datium::create( $date_time )->to( 'shamsi' )->object(); |
|
17 | + $date_time = Datium\Datium::create($date_time)->to('shamsi')->object(); |
|
18 | 18 | |
19 | 19 | $year = $date_time->format('Y'); |
20 | 20 | |
@@ -22,23 +22,23 @@ discard block |
||
22 | 22 | |
23 | 23 | $day = $date_time->format('d'); |
24 | 24 | |
25 | - $temp_day = 0 ; |
|
25 | + $temp_day = 0; |
|
26 | 26 | |
27 | - for ( $i = 1 ; $i < $month ; $i++ ) { |
|
27 | + for ($i = 1; $i < $month; $i++) { |
|
28 | 28 | |
29 | - $temp_day += $config[ 'month_days_number' ][ $i ]; |
|
29 | + $temp_day += $config['month_days_number'][$i]; |
|
30 | 30 | |
31 | 31 | } |
32 | 32 | |
33 | 33 | $temp_day += $day; |
34 | 34 | |
35 | - $leap = new Datium\Tools\Leap( $year ); |
|
35 | + $leap = new Datium\Tools\Leap($year); |
|
36 | 36 | |
37 | - if( $leap->get() && $month > 11 ) $temp_day++; |
|
37 | + if ($leap->get() && $month > 11) $temp_day++; |
|
38 | 38 | |
39 | - $_year = ( ( ( ( ( $year - 1 ) * 365.2422 ) + $temp_day ) - 119) / 354.3670 ) + 1; |
|
39 | + $_year = ((((($year - 1) * 365.2422) + $temp_day) - 119) / 354.3670) + 1; |
|
40 | 40 | |
41 | - $_year = explode( '.', $_year ); |
|
41 | + $_year = explode('.', $_year); |
|
42 | 42 | |
43 | 43 | $year = $_year[0]; |
44 | 44 | |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | $var_temp = '0.0'; |
48 | 48 | |
49 | - for ( $i = strlen( $_month ); $i > 2; $i-- ) { |
|
49 | + for ($i = strlen($_month); $i > 2; $i--) { |
|
50 | 50 | |
51 | 51 | $var_temp .= '0'; |
52 | 52 | |
@@ -54,11 +54,11 @@ discard block |
||
54 | 54 | |
55 | 55 | $var_temp .= '1'; |
56 | 56 | |
57 | - $_month = $_month * $var_temp ; |
|
57 | + $_month = $_month * $var_temp; |
|
58 | 58 | |
59 | - $_month = ( $_month * 12 ) + 1; |
|
59 | + $_month = ($_month * 12) + 1; |
|
60 | 60 | |
61 | - $_month = explode( '.', $_month ); |
|
61 | + $_month = explode('.', $_month); |
|
62 | 62 | |
63 | 63 | $month = $_month[0]; |
64 | 64 | |
@@ -66,9 +66,9 @@ discard block |
||
66 | 66 | |
67 | 67 | $var_temp = '0.0'; |
68 | 68 | |
69 | - for ( $i = strlen( $_day ); $i > 2; $i-- ) { |
|
69 | + for ($i = strlen($_day); $i > 2; $i--) { |
|
70 | 70 | |
71 | - $var_temp .= '0' ; |
|
71 | + $var_temp .= '0'; |
|
72 | 72 | |
73 | 73 | } |
74 | 74 | |
@@ -76,13 +76,13 @@ discard block |
||
76 | 76 | |
77 | 77 | $_day = $_day * $var_temp; |
78 | 78 | |
79 | - $_day = ( $_day * 29.530 ); |
|
79 | + $_day = ($_day * 29.530); |
|
80 | 80 | |
81 | - $_day = explode( '.', $_day ); |
|
81 | + $_day = explode('.', $_day); |
|
82 | 82 | |
83 | 83 | $day = $_day[0]; |
84 | 84 | |
85 | - $date_time->setDate( $year, $month, $day ); |
|
85 | + $date_time->setDate($year, $month, $day); |
|
86 | 86 | |
87 | 87 | return $date_time; |
88 | 88 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | * |
97 | 97 | *\_________________________________________________________/ |
98 | 98 | */ |
99 | - 'convert_from' => function( $date_time ) { |
|
99 | + 'convert_from' => function($date_time) { |
|
100 | 100 | |
101 | 101 | $config = include('Ghamari.php'); |
102 | 102 | |
@@ -108,31 +108,31 @@ discard block |
||
108 | 108 | |
109 | 109 | $days_of_year = 0; |
110 | 110 | |
111 | - foreach ( $config['month_days_number'] as $month => $value ) { |
|
111 | + foreach ($config['month_days_number'] as $month => $value) { |
|
112 | 112 | |
113 | - if( $month > $month ) $days_of_year += $value; |
|
113 | + if ($month > $month) $days_of_year += $value; |
|
114 | 114 | |
115 | 115 | } |
116 | 116 | |
117 | 117 | $days_of_year += $day; |
118 | 118 | |
119 | - $days_of_leap_years = intval( ( ( $year - 1 ) / 3 ) ); |
|
119 | + $days_of_leap_years = intval((($year - 1) / 3)); |
|
120 | 120 | |
121 | - $days_of_ghamari_years = ( ( ( $year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years ); |
|
121 | + $days_of_ghamari_years = ((($year - 1) * 354) + $days_of_year + $days_of_leap_years); |
|
122 | 122 | |
123 | 123 | $days_of_gregorain_years = $days_of_ghamari_years + 227078; |
124 | 124 | |
125 | - $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $year + 578 ) / 4 ) ); |
|
125 | + $days_of_gregorain_years = $days_of_gregorain_years - intval((($year + 578) / 4)); |
|
126 | 126 | |
127 | - $gregorian_month = ( $days_of_gregorain_years % 365 ); |
|
127 | + $gregorian_month = ($days_of_gregorain_years % 365); |
|
128 | 128 | |
129 | - $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1; |
|
129 | + $gregorian_year = intval($days_of_gregorain_years / 365) + 1; |
|
130 | 130 | |
131 | 131 | $config = include('Gregorian.php'); |
132 | 132 | |
133 | - foreach ($config [ 'month_days_number' ] as $month => $value) { |
|
133 | + foreach ($config ['month_days_number'] as $month => $value) { |
|
134 | 134 | |
135 | - if ( $gregorian_month < $value ) { |
|
135 | + if ($gregorian_month < $value) { |
|
136 | 136 | |
137 | 137 | break; |
138 | 138 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | |
145 | 145 | $gregorian_month = $month; |
146 | 146 | |
147 | - $date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day ); |
|
147 | + $date_time->setDate($gregorian_year, $gregorian_month, $gregorian_day); |
|
148 | 148 | |
149 | 149 | return $date_time; |
150 | 150 | |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | * |
170 | 170 | *\_________________________________________________________/ |
171 | 171 | */ |
172 | - 'month' => array ( |
|
172 | + 'month' => array( |
|
173 | 173 | |
174 | 174 | 'Farvardin', |
175 | 175 | |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | * |
207 | 207 | *\_________________________________________________________/ |
208 | 208 | */ |
209 | - 'days_of_week' => array ( |
|
209 | + 'days_of_week' => array( |
|
210 | 210 | |
211 | 211 | 'Shanbe', |
212 | 212 | |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | |
225 | 225 | ), |
226 | 226 | |
227 | - 'month_days_number' => array( 1 => 30, |
|
227 | + 'month_days_number' => array(1 => 30, |
|
228 | 228 | 2 => 29, |
229 | 229 | 3 => 30, |
230 | 230 | 4 => 30, |
@@ -235,21 +235,21 @@ discard block |
||
235 | 235 | 9 => 30, |
236 | 236 | 10 => 29, |
237 | 237 | 11 => 30, |
238 | - 12 => 30 ), |
|
238 | + 12 => 30), |
|
239 | 239 | |
240 | - 'day_of_year' => function( $date_time ) { |
|
240 | + 'day_of_year' => function($date_time) { |
|
241 | 241 | |
242 | 242 | $result = null; |
243 | 243 | |
244 | - $config = include( 'Ghamari.php' ); |
|
244 | + $config = include('Ghamari.php'); |
|
245 | 245 | |
246 | 246 | $month = $date_time->format('n'); |
247 | 247 | |
248 | 248 | $day = $date_time->format('d'); |
249 | 249 | |
250 | - foreach( $config['month_days_number'] as $_month => $value ) { |
|
250 | + foreach ($config['month_days_number'] as $_month => $value) { |
|
251 | 251 | |
252 | - if ( $_month < $month ) { |
|
252 | + if ($_month < $month) { |
|
253 | 253 | |
254 | 254 | $result += $value; |
255 | 255 | |
@@ -281,6 +281,6 @@ discard block |
||
281 | 281 | * |
282 | 282 | *\_________________________________________________________/ |
283 | 283 | */ |
284 | - 'weekend' => array( 'friday' ) |
|
284 | + 'weekend' => array('friday') |
|
285 | 285 | |
286 | 286 | ); |
@@ -1,8 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | - return array ( |
|
3 | + return array ( |
|
4 | 4 | |
5 | - /************************************************************ |
|
5 | + /************************************************************ |
|
6 | 6 | * Convert to |
7 | 7 | ************************************************************ |
8 | 8 | * |
@@ -10,85 +10,85 @@ discard block |
||
10 | 10 | * |
11 | 11 | *\_________________________________________________________/ |
12 | 12 | */ |
13 | - 'convert_to' => function( $date_time ) { |
|
13 | + 'convert_to' => function( $date_time ) { |
|
14 | 14 | |
15 | - $config = include( 'Shamsi.php' ); |
|
15 | + $config = include( 'Shamsi.php' ); |
|
16 | 16 | |
17 | - $date_time = Datium\Datium::create( $date_time )->to( 'shamsi' )->object(); |
|
17 | + $date_time = Datium\Datium::create( $date_time )->to( 'shamsi' )->object(); |
|
18 | 18 | |
19 | - $year = $date_time->format('Y'); |
|
19 | + $year = $date_time->format('Y'); |
|
20 | 20 | |
21 | - $month = $date_time->format('n'); |
|
21 | + $month = $date_time->format('n'); |
|
22 | 22 | |
23 | - $day = $date_time->format('d'); |
|
23 | + $day = $date_time->format('d'); |
|
24 | 24 | |
25 | - $temp_day = 0 ; |
|
25 | + $temp_day = 0 ; |
|
26 | 26 | |
27 | - for ( $i = 1 ; $i < $month ; $i++ ) { |
|
27 | + for ( $i = 1 ; $i < $month ; $i++ ) { |
|
28 | 28 | |
29 | - $temp_day += $config[ 'month_days_number' ][ $i ]; |
|
29 | + $temp_day += $config[ 'month_days_number' ][ $i ]; |
|
30 | 30 | |
31 | - } |
|
31 | + } |
|
32 | 32 | |
33 | 33 | $temp_day += $day; |
34 | 34 | |
35 | 35 | $leap = new Datium\Tools\Leap( $year ); |
36 | 36 | |
37 | - if( $leap->get() && $month > 11 ) $temp_day++; |
|
37 | + if( $leap->get() && $month > 11 ) $temp_day++; |
|
38 | 38 | |
39 | - $_year = ( ( ( ( ( $year - 1 ) * 365.2422 ) + $temp_day ) - 119) / 354.3670 ) + 1; |
|
39 | + $_year = ( ( ( ( ( $year - 1 ) * 365.2422 ) + $temp_day ) - 119) / 354.3670 ) + 1; |
|
40 | 40 | |
41 | - $_year = explode( '.', $_year ); |
|
41 | + $_year = explode( '.', $_year ); |
|
42 | 42 | |
43 | - $year = $_year[0]; |
|
43 | + $year = $_year[0]; |
|
44 | 44 | |
45 | - $_month = $_year[1]; |
|
45 | + $_month = $_year[1]; |
|
46 | 46 | |
47 | 47 | $var_temp = '0.0'; |
48 | 48 | |
49 | - for ( $i = strlen( $_month ); $i > 2; $i-- ) { |
|
49 | + for ( $i = strlen( $_month ); $i > 2; $i-- ) { |
|
50 | 50 | |
51 | - $var_temp .= '0'; |
|
51 | + $var_temp .= '0'; |
|
52 | 52 | |
53 | 53 | } |
54 | 54 | |
55 | 55 | $var_temp .= '1'; |
56 | 56 | |
57 | - $_month = $_month * $var_temp ; |
|
57 | + $_month = $_month * $var_temp ; |
|
58 | 58 | |
59 | - $_month = ( $_month * 12 ) + 1; |
|
59 | + $_month = ( $_month * 12 ) + 1; |
|
60 | 60 | |
61 | - $_month = explode( '.', $_month ); |
|
61 | + $_month = explode( '.', $_month ); |
|
62 | 62 | |
63 | - $month = $_month[0]; |
|
63 | + $month = $_month[0]; |
|
64 | 64 | |
65 | - $_day = $_month[1]; |
|
65 | + $_day = $_month[1]; |
|
66 | 66 | |
67 | - $var_temp = '0.0'; |
|
67 | + $var_temp = '0.0'; |
|
68 | 68 | |
69 | - for ( $i = strlen( $_day ); $i > 2; $i-- ) { |
|
69 | + for ( $i = strlen( $_day ); $i > 2; $i-- ) { |
|
70 | 70 | |
71 | 71 | $var_temp .= '0' ; |
72 | 72 | |
73 | - } |
|
73 | + } |
|
74 | 74 | |
75 | - $var_temp .= '1'; |
|
75 | + $var_temp .= '1'; |
|
76 | 76 | |
77 | - $_day = $_day * $var_temp; |
|
77 | + $_day = $_day * $var_temp; |
|
78 | 78 | |
79 | - $_day = ( $_day * 29.530 ); |
|
79 | + $_day = ( $_day * 29.530 ); |
|
80 | 80 | |
81 | - $_day = explode( '.', $_day ); |
|
81 | + $_day = explode( '.', $_day ); |
|
82 | 82 | |
83 | - $day = $_day[0]; |
|
83 | + $day = $_day[0]; |
|
84 | 84 | |
85 | 85 | $date_time->setDate( $year, $month, $day ); |
86 | 86 | |
87 | 87 | return $date_time; |
88 | 88 | |
89 | - }, |
|
89 | + }, |
|
90 | 90 | |
91 | - /************************************************************ |
|
91 | + /************************************************************ |
|
92 | 92 | * Convert From |
93 | 93 | ************************************************************ |
94 | 94 | * |
@@ -96,62 +96,62 @@ discard block |
||
96 | 96 | * |
97 | 97 | *\_________________________________________________________/ |
98 | 98 | */ |
99 | - 'convert_from' => function( $date_time ) { |
|
99 | + 'convert_from' => function( $date_time ) { |
|
100 | 100 | |
101 | - $config = include('Ghamari.php'); |
|
101 | + $config = include('Ghamari.php'); |
|
102 | 102 | |
103 | - $year = $date_time->format('Y'); |
|
103 | + $year = $date_time->format('Y'); |
|
104 | 104 | |
105 | - $month = $date_time->format('m'); |
|
105 | + $month = $date_time->format('m'); |
|
106 | 106 | |
107 | - $day = $date_time->format('d'); |
|
107 | + $day = $date_time->format('d'); |
|
108 | 108 | |
109 | - $days_of_year = 0; |
|
109 | + $days_of_year = 0; |
|
110 | 110 | |
111 | - foreach ( $config['month_days_number'] as $month => $value ) { |
|
111 | + foreach ( $config['month_days_number'] as $month => $value ) { |
|
112 | 112 | |
113 | - if( $month > $month ) $days_of_year += $value; |
|
113 | + if( $month > $month ) $days_of_year += $value; |
|
114 | 114 | |
115 | - } |
|
115 | + } |
|
116 | 116 | |
117 | - $days_of_year += $day; |
|
117 | + $days_of_year += $day; |
|
118 | 118 | |
119 | - $days_of_leap_years = intval( ( ( $year - 1 ) / 3 ) ); |
|
119 | + $days_of_leap_years = intval( ( ( $year - 1 ) / 3 ) ); |
|
120 | 120 | |
121 | - $days_of_ghamari_years = ( ( ( $year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years ); |
|
121 | + $days_of_ghamari_years = ( ( ( $year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years ); |
|
122 | 122 | |
123 | - $days_of_gregorain_years = $days_of_ghamari_years + 227078; |
|
123 | + $days_of_gregorain_years = $days_of_ghamari_years + 227078; |
|
124 | 124 | |
125 | - $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $year + 578 ) / 4 ) ); |
|
125 | + $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $year + 578 ) / 4 ) ); |
|
126 | 126 | |
127 | - $gregorian_month = ( $days_of_gregorain_years % 365 ); |
|
127 | + $gregorian_month = ( $days_of_gregorain_years % 365 ); |
|
128 | 128 | |
129 | - $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1; |
|
129 | + $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1; |
|
130 | 130 | |
131 | - $config = include('Gregorian.php'); |
|
131 | + $config = include('Gregorian.php'); |
|
132 | 132 | |
133 | - foreach ($config [ 'month_days_number' ] as $month => $value) { |
|
133 | + foreach ($config [ 'month_days_number' ] as $month => $value) { |
|
134 | 134 | |
135 | - if ( $gregorian_month < $value ) { |
|
135 | + if ( $gregorian_month < $value ) { |
|
136 | 136 | |
137 | - break; |
|
138 | - } |
|
137 | + break; |
|
138 | + } |
|
139 | 139 | |
140 | - $gregorian_month -= $value; |
|
141 | - } |
|
140 | + $gregorian_month -= $value; |
|
141 | + } |
|
142 | 142 | |
143 | - $gregorian_day = $gregorian_month; |
|
143 | + $gregorian_day = $gregorian_month; |
|
144 | 144 | |
145 | - $gregorian_month = $month; |
|
145 | + $gregorian_month = $month; |
|
146 | 146 | |
147 | - $date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day ); |
|
147 | + $date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day ); |
|
148 | 148 | |
149 | 149 | return $date_time; |
150 | 150 | |
151 | 151 | |
152 | - }, |
|
152 | + }, |
|
153 | 153 | |
154 | - /************************************************************ |
|
154 | + /************************************************************ |
|
155 | 155 | * Shorthand for jalali calendar |
156 | 156 | ************************************************************ |
157 | 157 | * |
@@ -159,9 +159,9 @@ discard block |
||
159 | 159 | * |
160 | 160 | *\_________________________________________________________/ |
161 | 161 | */ |
162 | - 'shorthand' => 'sh', |
|
162 | + 'shorthand' => 'sh', |
|
163 | 163 | |
164 | - /************************************************************ |
|
164 | + /************************************************************ |
|
165 | 165 | * Month's name |
166 | 166 | ************************************************************ |
167 | 167 | * |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | * |
170 | 170 | *\_________________________________________________________/ |
171 | 171 | */ |
172 | - 'month' => array ( |
|
172 | + 'month' => array ( |
|
173 | 173 | |
174 | 174 | 'Muharram', |
175 | 175 | |
@@ -195,9 +195,9 @@ discard block |
||
195 | 195 | |
196 | 196 | 'Dhu al_Hijjah' |
197 | 197 | |
198 | - ), |
|
198 | + ), |
|
199 | 199 | |
200 | - /************************************************************ |
|
200 | + /************************************************************ |
|
201 | 201 | * Days of Week |
202 | 202 | ************************************************************ |
203 | 203 | * |
@@ -206,64 +206,64 @@ discard block |
||
206 | 206 | * |
207 | 207 | *\_________________________________________________________/ |
208 | 208 | */ |
209 | - 'days_of_week' => array ( |
|
209 | + 'days_of_week' => array ( |
|
210 | 210 | |
211 | - 'al-Aḥad', |
|
211 | + 'al-Aḥad', |
|
212 | 212 | |
213 | - 'al-Ithnayn', |
|
213 | + 'al-Ithnayn', |
|
214 | 214 | |
215 | - 'ath-Thulatha\'', |
|
215 | + 'ath-Thulatha\'', |
|
216 | 216 | |
217 | - 'al-Arbi\'a', |
|
217 | + 'al-Arbi\'a', |
|
218 | 218 | |
219 | - 'al-Khamees', |
|
219 | + 'al-Khamees', |
|
220 | 220 | |
221 | - 'al-Jumu\'ah', |
|
221 | + 'al-Jumu\'ah', |
|
222 | 222 | |
223 | - 'as-Sabt', |
|
223 | + 'as-Sabt', |
|
224 | 224 | |
225 | - ), |
|
225 | + ), |
|
226 | 226 | |
227 | - 'month_days_number' => array( 1 => 30, |
|
228 | - 2 => 29, |
|
229 | - 3 => 30, |
|
230 | - 4 => 30, |
|
231 | - 5 => 29, |
|
232 | - 6 => 29, |
|
233 | - 7 => 30, |
|
234 | - 8 => 29, |
|
235 | - 9 => 30, |
|
236 | - 10 => 29, |
|
237 | - 11 => 30, |
|
238 | - 12 => 30 ), |
|
227 | + 'month_days_number' => array( 1 => 30, |
|
228 | + 2 => 29, |
|
229 | + 3 => 30, |
|
230 | + 4 => 30, |
|
231 | + 5 => 29, |
|
232 | + 6 => 29, |
|
233 | + 7 => 30, |
|
234 | + 8 => 29, |
|
235 | + 9 => 30, |
|
236 | + 10 => 29, |
|
237 | + 11 => 30, |
|
238 | + 12 => 30 ), |
|
239 | 239 | |
240 | - 'day_of_year' => function( $date_time ) { |
|
240 | + 'day_of_year' => function( $date_time ) { |
|
241 | 241 | |
242 | - $result = null; |
|
242 | + $result = null; |
|
243 | 243 | |
244 | - $config = include( 'Ghamari.php' ); |
|
244 | + $config = include( 'Ghamari.php' ); |
|
245 | 245 | |
246 | - $month = $date_time->format('n'); |
|
246 | + $month = $date_time->format('n'); |
|
247 | 247 | |
248 | - $day = $date_time->format('d'); |
|
248 | + $day = $date_time->format('d'); |
|
249 | 249 | |
250 | - foreach( $config['month_days_number'] as $_month => $value ) { |
|
250 | + foreach( $config['month_days_number'] as $_month => $value ) { |
|
251 | 251 | |
252 | - if ( $_month < $month ) { |
|
252 | + if ( $_month < $month ) { |
|
253 | 253 | |
254 | - $result += $value; |
|
254 | + $result += $value; |
|
255 | 255 | |
256 | - } |
|
256 | + } |
|
257 | 257 | |
258 | - } |
|
258 | + } |
|
259 | 259 | |
260 | - $result += $day; |
|
260 | + $result += $day; |
|
261 | 261 | |
262 | - return $result + 1; |
|
262 | + return $result + 1; |
|
263 | 263 | |
264 | - }, |
|
264 | + }, |
|
265 | 265 | |
266 | - /************************************************************ |
|
266 | + /************************************************************ |
|
267 | 267 | * Leap year |
268 | 268 | ************************************************************ |
269 | 269 | * |
@@ -271,9 +271,9 @@ discard block |
||
271 | 271 | * |
272 | 272 | *\_________________________________________________________/ |
273 | 273 | */ |
274 | - 'leap_year' => null, |
|
274 | + 'leap_year' => null, |
|
275 | 275 | |
276 | - /************************************************************ |
|
276 | + /************************************************************ |
|
277 | 277 | * Weekend |
278 | 278 | ************************************************************ |
279 | 279 | * |
@@ -281,6 +281,6 @@ discard block |
||
281 | 281 | * |
282 | 282 | *\_________________________________________________________/ |
283 | 283 | */ |
284 | - 'weekend' => array( 'friday' ) |
|
284 | + 'weekend' => array( 'friday' ) |
|
285 | 285 | |
286 | 286 | ); |
@@ -106,17 +106,17 @@ discard block |
||
106 | 106 | ), |
107 | 107 | |
108 | 108 | 'month_days_number' => array( 1 => 31, |
109 | - 2 => 31, |
|
110 | - 3 => 31, |
|
111 | - 4 => 31, |
|
112 | - 5 => 31, |
|
113 | - 6 => 31, |
|
114 | - 7 => 30, |
|
115 | - 8 => 30, |
|
116 | - 9 => 30, |
|
117 | - 10 => 30, |
|
118 | - 11 => 30, |
|
119 | - 12 => 29 ), |
|
109 | + 2 => 31, |
|
110 | + 3 => 31, |
|
111 | + 4 => 31, |
|
112 | + 5 => 31, |
|
113 | + 6 => 31, |
|
114 | + 7 => 30, |
|
115 | + 8 => 30, |
|
116 | + 9 => 30, |
|
117 | + 10 => 30, |
|
118 | + 11 => 30, |
|
119 | + 12 => 29 ), |
|
120 | 120 | |
121 | 121 | /************************************************************ |
122 | 122 | * Leap year |
@@ -138,4 +138,4 @@ discard block |
||
138 | 138 | */ |
139 | 139 | 'weekend' => array( 'friday' ) |
140 | 140 | |
141 | - ); |
|
141 | + ); |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | use Datium\Datium as Datium; |
4 | 4 | |
5 | -return array ( |
|
5 | +return array( |
|
6 | 6 | |
7 | 7 | /************************************************************ |
8 | 8 | * Convert to |
@@ -12,9 +12,9 @@ discard block |
||
12 | 12 | * |
13 | 13 | *\_________________________________________________________/ |
14 | 14 | */ |
15 | - 'convert_to' => function( $date_time ) { |
|
15 | + 'convert_to' => function($date_time) { |
|
16 | 16 | |
17 | - return Datium::create( $date_time )->sub( '226898 day' )->object(); |
|
17 | + return Datium::create($date_time)->sub('226898 day')->object(); |
|
18 | 18 | |
19 | 19 | }, |
20 | 20 | |
@@ -26,9 +26,9 @@ discard block |
||
26 | 26 | * |
27 | 27 | *\_________________________________________________________/ |
28 | 28 | */ |
29 | - 'convert_from' => function( $date_time ) { |
|
29 | + 'convert_from' => function($date_time) { |
|
30 | 30 | |
31 | - return Datium::create( $date_time )->add( '226898 day' )->object(); |
|
31 | + return Datium::create($date_time)->add('226898 day')->object(); |
|
32 | 32 | |
33 | 33 | }, |
34 | 34 | |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * |
51 | 51 | *\_________________________________________________________/ |
52 | 52 | */ |
53 | - 'month' => array ( |
|
53 | + 'month' => array( |
|
54 | 54 | |
55 | 55 | 'Farvardin', |
56 | 56 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * |
88 | 88 | *\_________________________________________________________/ |
89 | 89 | */ |
90 | - 'days_of_week' => array ( |
|
90 | + 'days_of_week' => array( |
|
91 | 91 | |
92 | 92 | 'Shanbe', |
93 | 93 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | |
106 | 106 | ), |
107 | 107 | |
108 | - 'month_days_number' => array( 1 => 31, |
|
108 | + 'month_days_number' => array(1 => 31, |
|
109 | 109 | 2 => 31, |
110 | 110 | 3 => 31, |
111 | 111 | 4 => 31, |
@@ -116,22 +116,22 @@ discard block |
||
116 | 116 | 9 => 30, |
117 | 117 | 10 => 30, |
118 | 118 | 11 => 30, |
119 | - 12 => 29 ), |
|
119 | + 12 => 29), |
|
120 | 120 | |
121 | 121 | |
122 | - 'day_of_year' => function( $date_time ) { |
|
122 | + 'day_of_year' => function($date_time) { |
|
123 | 123 | |
124 | 124 | $result = null; |
125 | 125 | |
126 | - $config = include( 'Shamsi.php' ); |
|
126 | + $config = include('Shamsi.php'); |
|
127 | 127 | |
128 | 128 | $month = $date_time->format('n'); |
129 | 129 | |
130 | 130 | $day = $date_time->format('d'); |
131 | 131 | |
132 | - foreach( $config['month_days_number'] as $_month => $value ) { |
|
132 | + foreach ($config['month_days_number'] as $_month => $value) { |
|
133 | 133 | |
134 | - if ( $_month < $month ) $result += $value; |
|
134 | + if ($_month < $month) $result += $value; |
|
135 | 135 | |
136 | 136 | } |
137 | 137 | |
@@ -159,6 +159,6 @@ discard block |
||
159 | 159 | * |
160 | 160 | *\_________________________________________________________/ |
161 | 161 | */ |
162 | - 'weekend' => array( 'friday' ) |
|
162 | + 'weekend' => array('friday') |
|
163 | 163 | |
164 | 164 | ); |
@@ -131,7 +131,9 @@ |
||
131 | 131 | |
132 | 132 | foreach( $config['month_days_number'] as $_month => $value ) { |
133 | 133 | |
134 | - if ( $_month < $month ) $result += $value; |
|
134 | + if ( $_month < $month ) { |
|
135 | + $result += $value; |
|
136 | + } |
|
135 | 137 | |
136 | 138 | } |
137 | 139 |
@@ -94,10 +94,10 @@ discard block |
||
94 | 94 | } |
95 | 95 | |
96 | 96 | /** |
97 | - *convert shamsi year to gregorian year |
|
98 | - * @since Oct, 16 2015 |
|
99 | - * @return object |
|
100 | - */ |
|
97 | + *convert shamsi year to gregorian year |
|
98 | + * @since Oct, 16 2015 |
|
99 | + * @return object |
|
100 | + */ |
|
101 | 101 | public function shamsiToGregorian( $date_time ) { |
102 | 102 | |
103 | 103 | $this->date_time = $date_time; |
@@ -154,15 +154,15 @@ discard block |
||
154 | 154 | $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day ); |
155 | 155 | |
156 | 156 | |
157 | - return $this->date_time; |
|
157 | + return $this->date_time; |
|
158 | 158 | |
159 | 159 | } |
160 | 160 | |
161 | 161 | /** |
162 | - *convert shamsi year to ghamari year |
|
163 | - * @since Oct, 17 2015 |
|
164 | - * @return object |
|
165 | - */ |
|
162 | + *convert shamsi year to ghamari year |
|
163 | + * @since Oct, 17 2015 |
|
164 | + * @return object |
|
165 | + */ |
|
166 | 166 | public function shamsiToGhamari( $date_time ) { |
167 | 167 | |
168 | 168 | $this->date_time = $date_time; |
@@ -181,9 +181,9 @@ discard block |
||
181 | 181 | |
182 | 182 | } |
183 | 183 | |
184 | - $this->temp_day += $this->day; |
|
184 | + $this->temp_day += $this->day; |
|
185 | 185 | |
186 | - $this->leap = new Leap( $this->year ); |
|
186 | + $this->leap = new Leap( $this->year ); |
|
187 | 187 | |
188 | 188 | if( $this->leap->get() && $this->month > 11 ) $this->temp_day++; |
189 | 189 | |
@@ -195,15 +195,15 @@ discard block |
||
195 | 195 | |
196 | 196 | $_month = $_year[1]; |
197 | 197 | |
198 | - $var_temp = '0.0'; |
|
198 | + $var_temp = '0.0'; |
|
199 | 199 | |
200 | 200 | for ( $i = strlen( $_month ); $i > 2; $i-- ) { |
201 | 201 | |
202 | 202 | $var_temp .= '0'; |
203 | 203 | |
204 | - } |
|
204 | + } |
|
205 | 205 | |
206 | - $var_temp .= '1'; |
|
206 | + $var_temp .= '1'; |
|
207 | 207 | |
208 | 208 | $_month = $_month * $var_temp ; |
209 | 209 | |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | |
220 | 220 | for ( $i = strlen( $_day ); $i > 2; $i-- ) { |
221 | 221 | |
222 | - $var_temp .= '0' ; |
|
222 | + $var_temp .= '0' ; |
|
223 | 223 | |
224 | 224 | } |
225 | 225 | |
@@ -233,17 +233,17 @@ discard block |
||
233 | 233 | |
234 | 234 | $this->day = $_day[0]; |
235 | 235 | |
236 | - $this->date_time->setDate( $this->year, $this->month, $this->day ); |
|
236 | + $this->date_time->setDate( $this->year, $this->month, $this->day ); |
|
237 | 237 | |
238 | - return $this->date_time; |
|
238 | + return $this->date_time; |
|
239 | 239 | |
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
243 | - *convert ghamari year to shamsi year |
|
244 | - * @since Oct, 17 2015 |
|
245 | - * @return object |
|
246 | - */ |
|
243 | + *convert ghamari year to shamsi year |
|
244 | + * @since Oct, 17 2015 |
|
245 | + * @return object |
|
246 | + */ |
|
247 | 247 | public function ghamariToShamsi( $date_time ) { |
248 | 248 | |
249 | 249 | $this->date_time = $date_time; |
@@ -289,15 +289,15 @@ discard block |
||
289 | 289 | |
290 | 290 | $this->date_time->setDate( $shamsi_year, $shamsi_month, $shamsi_day ); |
291 | 291 | |
292 | - return $this->date_time; |
|
292 | + return $this->date_time; |
|
293 | 293 | |
294 | 294 | } |
295 | 295 | |
296 | 296 | /** |
297 | - * convert ghamari year to gregorian year |
|
298 | - * @since Oct, 17 2015 |
|
299 | - * @return object |
|
300 | - */ |
|
297 | + * convert ghamari year to gregorian year |
|
298 | + * @since Oct, 17 2015 |
|
299 | + * @return object |
|
300 | + */ |
|
301 | 301 | public function ghamariToGregorian( $date_time ) { |
302 | 302 | |
303 | 303 | $this->date_time = $date_time; |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | |
344 | 344 | $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day ); |
345 | 345 | |
346 | - return $this->date_time; |
|
346 | + return $this->date_time; |
|
347 | 347 | |
348 | 348 | } |
349 | 349 |
@@ -63,15 +63,15 @@ discard block |
||
63 | 63 | * |
64 | 64 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ |
65 | 65 | */ |
66 | - public function __construct( $date_time = NULL ) { |
|
66 | + public function __construct($date_time = NULL) { |
|
67 | 67 | |
68 | - if ( $date_time !== NULL ) { |
|
68 | + if ($date_time !== NULL) { |
|
69 | 69 | |
70 | 70 | $this->date_time = $date_time; |
71 | 71 | |
72 | 72 | } |
73 | 73 | |
74 | - $this->config = include( 'Config.php' ); |
|
74 | + $this->config = include('Config.php'); |
|
75 | 75 | |
76 | 76 | $this->persian_month = $this->config['month']['persian']; |
77 | 77 | |
@@ -85,11 +85,11 @@ discard block |
||
85 | 85 | * |
86 | 86 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ |
87 | 87 | */ |
88 | - public function to( $calendar ) { |
|
88 | + public function to($calendar) { |
|
89 | 89 | |
90 | - $this->calendar_file = include( 'CalendarSettings/' . ucfirst( $calendar ) . '.php' ); |
|
90 | + $this->calendar_file = include('CalendarSettings/'.ucfirst($calendar).'.php'); |
|
91 | 91 | |
92 | - return $this->calendar_file[ 'convert_to' ]( $this->date_time ); |
|
92 | + return $this->calendar_file['convert_to']($this->date_time); |
|
93 | 93 | |
94 | 94 | } |
95 | 95 | |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | * @since Oct, 16 2015 |
99 | 99 | * @return object |
100 | 100 | */ |
101 | -public function shamsiToGregorian( $date_time ) { |
|
101 | +public function shamsiToGregorian($date_time) { |
|
102 | 102 | |
103 | 103 | $this->date_time = $date_time; |
104 | 104 | |
@@ -110,39 +110,39 @@ discard block |
||
110 | 110 | |
111 | 111 | $days_of_year = 0; |
112 | 112 | |
113 | -foreach ( $this->config['shamsi_month_days'] as $month => $value ) { |
|
113 | +foreach ($this->config['shamsi_month_days'] as $month => $value) { |
|
114 | 114 | |
115 | - if( $this->month > $month ) $days_of_year += $value; |
|
115 | + if ($this->month > $month) $days_of_year += $value; |
|
116 | 116 | |
117 | 117 | } |
118 | 118 | |
119 | 119 | $days_of_year += $this->day; |
120 | 120 | |
121 | -$days_of_leap_years = intval( ( ( $this->year - 1 ) / 4 ) ); |
|
121 | +$days_of_leap_years = intval((($this->year - 1) / 4)); |
|
122 | 122 | |
123 | -$days_of_shamsi_years = ( ( ( $this->year - 1 ) * 365 ) + $days_of_year + $days_of_leap_years ); |
|
123 | +$days_of_shamsi_years = ((($this->year - 1) * 365) + $days_of_year + $days_of_leap_years); |
|
124 | 124 | |
125 | 125 | $days_of_gregorain_years = $days_of_shamsi_years + 226899; |
126 | 126 | |
127 | -if ( $this->month < 10 ) { |
|
127 | +if ($this->month < 10) { |
|
128 | 128 | |
129 | -$days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 621 ) / 4 ) ); |
|
129 | +$days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 621) / 4)); |
|
130 | 130 | |
131 | 131 | } |
132 | 132 | |
133 | -elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) { |
|
133 | +elseif (((10 == $this->month) && ($this->day > 10)) || ($this->month > 10)) { |
|
134 | 134 | |
135 | -$days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 622 ) / 4 ) ); |
|
135 | +$days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 622) / 4)); |
|
136 | 136 | |
137 | 137 | } |
138 | 138 | |
139 | -$gregorian_month = ( $days_of_gregorain_years % 365 ); |
|
139 | +$gregorian_month = ($days_of_gregorain_years % 365); |
|
140 | 140 | |
141 | -$gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1; |
|
141 | +$gregorian_year = intval($days_of_gregorain_years / 365) + 1; |
|
142 | 142 | |
143 | 143 | foreach ($this->config['gregorian_month_days'] as $month => $value) { |
144 | 144 | |
145 | - if ( $gregorian_month < $value ) break; |
|
145 | + if ($gregorian_month < $value) break; |
|
146 | 146 | |
147 | 147 | $gregorian_month -= $value; |
148 | 148 | } |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | |
152 | 152 | $gregorian_month = $month; |
153 | 153 | |
154 | - $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day ); |
|
154 | + $this->date_time->setDate($gregorian_year, $gregorian_month, $gregorian_day); |
|
155 | 155 | |
156 | 156 | |
157 | 157 | return $this->date_time; |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | * @since Oct, 17 2015 |
164 | 164 | * @return object |
165 | 165 | */ |
166 | -public function shamsiToGhamari( $date_time ) { |
|
166 | +public function shamsiToGhamari($date_time) { |
|
167 | 167 | |
168 | 168 | $this->date_time = $date_time; |
169 | 169 | |
@@ -173,9 +173,9 @@ discard block |
||
173 | 173 | |
174 | 174 | $this->day = $this->date_time->format('d'); |
175 | 175 | |
176 | - $this->temp_day = 0 ; |
|
176 | + $this->temp_day = 0; |
|
177 | 177 | |
178 | - for ( $i = 1 ; $i < $this->month ; $i++ ) { |
|
178 | + for ($i = 1; $i < $this->month; $i++) { |
|
179 | 179 | |
180 | 180 | $this->temp_day += $this->config['shamsi_month_days'][$i]; |
181 | 181 | |
@@ -183,13 +183,13 @@ discard block |
||
183 | 183 | |
184 | 184 | $this->temp_day += $this->day; |
185 | 185 | |
186 | - $this->leap = new Leap( $this->year ); |
|
186 | + $this->leap = new Leap($this->year); |
|
187 | 187 | |
188 | - if( $this->leap->get() && $this->month > 11 ) $this->temp_day++; |
|
188 | + if ($this->leap->get() && $this->month > 11) $this->temp_day++; |
|
189 | 189 | |
190 | - $_year = ( ( ( ( ( $this->year - 1 ) * 365.2422 ) + $this->temp_day ) - 119) / 354.3670 ) + 1; |
|
190 | + $_year = ((((($this->year - 1) * 365.2422) + $this->temp_day) - 119) / 354.3670) + 1; |
|
191 | 191 | |
192 | - $_year = explode( '.', $_year ); |
|
192 | + $_year = explode('.', $_year); |
|
193 | 193 | |
194 | 194 | $this->year = $_year[0]; |
195 | 195 | |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | |
198 | 198 | $var_temp = '0.0'; |
199 | 199 | |
200 | - for ( $i = strlen( $_month ); $i > 2; $i-- ) { |
|
200 | + for ($i = strlen($_month); $i > 2; $i--) { |
|
201 | 201 | |
202 | 202 | $var_temp .= '0'; |
203 | 203 | |
@@ -205,11 +205,11 @@ discard block |
||
205 | 205 | |
206 | 206 | $var_temp .= '1'; |
207 | 207 | |
208 | - $_month = $_month * $var_temp ; |
|
208 | + $_month = $_month * $var_temp; |
|
209 | 209 | |
210 | - $_month = ( $_month * 12 ) + 1; |
|
210 | + $_month = ($_month * 12) + 1; |
|
211 | 211 | |
212 | - $_month = explode( '.', $_month ); |
|
212 | + $_month = explode('.', $_month); |
|
213 | 213 | |
214 | 214 | $this->month = $_month[0]; |
215 | 215 | |
@@ -217,9 +217,9 @@ discard block |
||
217 | 217 | |
218 | 218 | $var_temp = '0.0'; |
219 | 219 | |
220 | - for ( $i = strlen( $_day ); $i > 2; $i-- ) { |
|
220 | + for ($i = strlen($_day); $i > 2; $i--) { |
|
221 | 221 | |
222 | - $var_temp .= '0' ; |
|
222 | + $var_temp .= '0'; |
|
223 | 223 | |
224 | 224 | } |
225 | 225 | |
@@ -227,13 +227,13 @@ discard block |
||
227 | 227 | |
228 | 228 | $_day = $_day * $var_temp; |
229 | 229 | |
230 | - $_day = ( $_day * 29.530 ); |
|
230 | + $_day = ($_day * 29.530); |
|
231 | 231 | |
232 | - $_day = explode( '.', $_day ); |
|
232 | + $_day = explode('.', $_day); |
|
233 | 233 | |
234 | 234 | $this->day = $_day[0]; |
235 | 235 | |
236 | - $this->date_time->setDate( $this->year, $this->month, $this->day ); |
|
236 | + $this->date_time->setDate($this->year, $this->month, $this->day); |
|
237 | 237 | |
238 | 238 | return $this->date_time; |
239 | 239 | |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | * @since Oct, 17 2015 |
245 | 245 | * @return object |
246 | 246 | */ |
247 | -public function ghamariToShamsi( $date_time ) { |
|
247 | +public function ghamariToShamsi($date_time) { |
|
248 | 248 | |
249 | 249 | $this->date_time = $date_time; |
250 | 250 | |
@@ -256,29 +256,29 @@ discard block |
||
256 | 256 | |
257 | 257 | $days_of_year = 0; |
258 | 258 | |
259 | -foreach ( $this->config['islamic_month_days'] as $month => $value ) { |
|
259 | +foreach ($this->config['islamic_month_days'] as $month => $value) { |
|
260 | 260 | |
261 | - if( $this->month > $month ) $days_of_year += $value; |
|
261 | + if ($this->month > $month) $days_of_year += $value; |
|
262 | 262 | |
263 | 263 | } |
264 | 264 | |
265 | 265 | $days_of_year += $this->day; |
266 | 266 | |
267 | -$days_of_leap_years = intval( ( ( $this->year - 1 ) / 3 ) ); |
|
267 | +$days_of_leap_years = intval((($this->year - 1) / 3)); |
|
268 | 268 | |
269 | -$days_of_ghamari_years = ( ( ( $this->year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years ); |
|
269 | +$days_of_ghamari_years = ((($this->year - 1) * 354) + $days_of_year + $days_of_leap_years); |
|
270 | 270 | |
271 | 271 | $days_of_shamsi_years = $days_of_ghamari_years + 179; |
272 | 272 | |
273 | -$days_of_shamsi_years = $days_of_shamsi_years - intval( ( ( $this->year - 43 ) / 4 ) ); |
|
273 | +$days_of_shamsi_years = $days_of_shamsi_years - intval((($this->year - 43) / 4)); |
|
274 | 274 | |
275 | -$shamsi_month = ( $days_of_shamsi_years % 365 ); |
|
275 | +$shamsi_month = ($days_of_shamsi_years % 365); |
|
276 | 276 | |
277 | -$shamsi_year = intval( $days_of_shamsi_years / 365 ) + 1; |
|
277 | +$shamsi_year = intval($days_of_shamsi_years / 365) + 1; |
|
278 | 278 | |
279 | 279 | foreach ($this->config['shamsi_month_days'] as $month => $value) { |
280 | 280 | |
281 | - if ( $shamsi_month < $value ) break; |
|
281 | + if ($shamsi_month < $value) break; |
|
282 | 282 | |
283 | 283 | $shamsi_month -= $value; |
284 | 284 | } |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | |
288 | 288 | $shamsi_month = $month; |
289 | 289 | |
290 | - $this->date_time->setDate( $shamsi_year, $shamsi_month, $shamsi_day ); |
|
290 | + $this->date_time->setDate($shamsi_year, $shamsi_month, $shamsi_day); |
|
291 | 291 | |
292 | 292 | return $this->date_time; |
293 | 293 | |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | * @since Oct, 17 2015 |
299 | 299 | * @return object |
300 | 300 | */ |
301 | - public function ghamariToGregorian( $date_time ) { |
|
301 | + public function ghamariToGregorian($date_time) { |
|
302 | 302 | |
303 | 303 | $this->date_time = $date_time; |
304 | 304 | |
@@ -310,29 +310,29 @@ discard block |
||
310 | 310 | |
311 | 311 | $days_of_year = 0; |
312 | 312 | |
313 | - foreach ( $this->config['islamic_month_days'] as $month => $value ) { |
|
313 | + foreach ($this->config['islamic_month_days'] as $month => $value) { |
|
314 | 314 | |
315 | - if( $this->month > $month ) $days_of_year += $value; |
|
315 | + if ($this->month > $month) $days_of_year += $value; |
|
316 | 316 | |
317 | 317 | } |
318 | 318 | |
319 | 319 | $days_of_year += $this->day; |
320 | 320 | |
321 | - $days_of_leap_years = intval( ( ( $this->year - 1 ) / 3 ) ); |
|
321 | + $days_of_leap_years = intval((($this->year - 1) / 3)); |
|
322 | 322 | |
323 | - $days_of_ghamari_years = ( ( ( $this->year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years ); |
|
323 | + $days_of_ghamari_years = ((($this->year - 1) * 354) + $days_of_year + $days_of_leap_years); |
|
324 | 324 | |
325 | 325 | $days_of_gregorain_years = $days_of_ghamari_years + 227078; |
326 | 326 | |
327 | - $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 578 ) / 4 ) ); |
|
327 | + $days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 578) / 4)); |
|
328 | 328 | |
329 | - $gregorian_month = ( $days_of_gregorain_years % 365 ); |
|
329 | + $gregorian_month = ($days_of_gregorain_years % 365); |
|
330 | 330 | |
331 | - $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1; |
|
331 | + $gregorian_year = intval($days_of_gregorain_years / 365) + 1; |
|
332 | 332 | |
333 | 333 | foreach ($this->config['gregorian_month_days'] as $month => $value) { |
334 | 334 | |
335 | - if ( $gregorian_month < $value ) break; |
|
335 | + if ($gregorian_month < $value) break; |
|
336 | 336 | |
337 | 337 | $gregorian_month -= $value; |
338 | 338 | } |
@@ -341,7 +341,7 @@ discard block |
||
341 | 341 | |
342 | 342 | $gregorian_month = $month; |
343 | 343 | |
344 | - $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day ); |
|
344 | + $this->date_time->setDate($gregorian_year, $gregorian_month, $gregorian_day); |
|
345 | 345 | |
346 | 346 | return $this->date_time; |
347 | 347 |
@@ -112,7 +112,9 @@ discard block |
||
112 | 112 | |
113 | 113 | foreach ( $this->config['shamsi_month_days'] as $month => $value ) { |
114 | 114 | |
115 | - if( $this->month > $month ) $days_of_year += $value; |
|
115 | + if( $this->month > $month ) { |
|
116 | + $days_of_year += $value; |
|
117 | + } |
|
116 | 118 | |
117 | 119 | } |
118 | 120 | |
@@ -128,9 +130,7 @@ discard block |
||
128 | 130 | |
129 | 131 | $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 621 ) / 4 ) ); |
130 | 132 | |
131 | -} |
|
132 | - |
|
133 | -elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) { |
|
133 | +} elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) { |
|
134 | 134 | |
135 | 135 | $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 622 ) / 4 ) ); |
136 | 136 | |
@@ -142,7 +142,9 @@ discard block |
||
142 | 142 | |
143 | 143 | foreach ($this->config['gregorian_month_days'] as $month => $value) { |
144 | 144 | |
145 | - if ( $gregorian_month < $value ) break; |
|
145 | + if ( $gregorian_month < $value ) { |
|
146 | + break; |
|
147 | + } |
|
146 | 148 | |
147 | 149 | $gregorian_month -= $value; |
148 | 150 | } |
@@ -185,7 +187,9 @@ discard block |
||
185 | 187 | |
186 | 188 | $this->leap = new Leap( $this->year ); |
187 | 189 | |
188 | - if( $this->leap->get() && $this->month > 11 ) $this->temp_day++; |
|
190 | + if( $this->leap->get() && $this->month > 11 ) { |
|
191 | + $this->temp_day++; |
|
192 | + } |
|
189 | 193 | |
190 | 194 | $_year = ( ( ( ( ( $this->year - 1 ) * 365.2422 ) + $this->temp_day ) - 119) / 354.3670 ) + 1; |
191 | 195 | |
@@ -258,7 +262,9 @@ discard block |
||
258 | 262 | |
259 | 263 | foreach ( $this->config['islamic_month_days'] as $month => $value ) { |
260 | 264 | |
261 | - if( $this->month > $month ) $days_of_year += $value; |
|
265 | + if( $this->month > $month ) { |
|
266 | + $days_of_year += $value; |
|
267 | + } |
|
262 | 268 | |
263 | 269 | } |
264 | 270 | |
@@ -278,7 +284,9 @@ discard block |
||
278 | 284 | |
279 | 285 | foreach ($this->config['shamsi_month_days'] as $month => $value) { |
280 | 286 | |
281 | - if ( $shamsi_month < $value ) break; |
|
287 | + if ( $shamsi_month < $value ) { |
|
288 | + break; |
|
289 | + } |
|
282 | 290 | |
283 | 291 | $shamsi_month -= $value; |
284 | 292 | } |
@@ -312,7 +320,9 @@ discard block |
||
312 | 320 | |
313 | 321 | foreach ( $this->config['islamic_month_days'] as $month => $value ) { |
314 | 322 | |
315 | - if( $this->month > $month ) $days_of_year += $value; |
|
323 | + if( $this->month > $month ) { |
|
324 | + $days_of_year += $value; |
|
325 | + } |
|
316 | 326 | |
317 | 327 | } |
318 | 328 | |
@@ -332,7 +342,9 @@ discard block |
||
332 | 342 | |
333 | 343 | foreach ($this->config['gregorian_month_days'] as $month => $value) { |
334 | 344 | |
335 | - if ( $gregorian_month < $value ) break; |
|
345 | + if ( $gregorian_month < $value ) { |
|
346 | + break; |
|
347 | + } |
|
336 | 348 | |
337 | 349 | $gregorian_month -= $value; |
338 | 350 | } |
@@ -63,6 +63,10 @@ discard block |
||
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 ) { |
@@ -96,6 +100,7 @@ discard block |
||
96 | 100 | /** |
97 | 101 | *convert shamsi year to gregorian year |
98 | 102 | * @since Oct, 16 2015 |
103 | + * @param \DateTime $date_time |
|
99 | 104 | * @return object |
100 | 105 | */ |
101 | 106 | public function shamsiToGregorian( $date_time ) { |
@@ -296,6 +301,7 @@ discard block |
||
296 | 301 | /** |
297 | 302 | * convert ghamari year to gregorian year |
298 | 303 | * @since Oct, 17 2015 |
304 | + * @param \DateTime $date_time |
|
299 | 305 | * @return object |
300 | 306 | */ |
301 | 307 | public function ghamariToGregorian( $date_time ) { |
@@ -68,13 +68,13 @@ discard block |
||
68 | 68 | |
69 | 69 | $this->result = $this->islamic_day_of_week(); |
70 | 70 | |
71 | - break; |
|
71 | + break; |
|
72 | 72 | |
73 | 73 | case 'gr': |
74 | 74 | |
75 | 75 | $this->result = date( 'w', strtotime( $this->date_time->format('Y-m-d H:i:s') ) ) + 1; |
76 | 76 | |
77 | - break; |
|
77 | + break; |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | return $this->result; |
@@ -98,9 +98,9 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | /** |
101 | - * @since Sept, 14 2015 |
|
102 | - * @return integer |
|
103 | - */ |
|
101 | + * @since Sept, 14 2015 |
|
102 | + * @return integer |
|
103 | + */ |
|
104 | 104 | protected function islamic_day_of_week() { |
105 | 105 | |
106 | 106 | $this->day = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->geregorian_DayofWeek], $this->day); |
@@ -19,9 +19,9 @@ discard block |
||
19 | 19 | |
20 | 20 | protected $geregorian_DayofWeek; |
21 | 21 | |
22 | - public function __construct( $date_time, $calendar_type = 'gregorian' ) { |
|
22 | + public function __construct($date_time, $calendar_type = 'gregorian') { |
|
23 | 23 | |
24 | - $this->config = include( 'Config.php' ); |
|
24 | + $this->config = include('Config.php'); |
|
25 | 25 | |
26 | 26 | $this->date_time = $date_time; |
27 | 27 | |
@@ -42,9 +42,9 @@ discard block |
||
42 | 42 | */ |
43 | 43 | public function year() { |
44 | 44 | |
45 | - $config = include( 'CalendarSettings/' . ucfirst( $this->calendar_type ) . '.php' ); |
|
45 | + $config = include('CalendarSettings/'.ucfirst($this->calendar_type).'.php'); |
|
46 | 46 | |
47 | - return $config[ 'day_of_year' ]( $this->date_time ); |
|
47 | + return $config['day_of_year']($this->date_time); |
|
48 | 48 | |
49 | 49 | } |
50 | 50 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function week() { |
58 | 58 | |
59 | - switch ( $this->calendar_type ) { |
|
59 | + switch ($this->calendar_type) { |
|
60 | 60 | |
61 | 61 | case 'ir': |
62 | 62 | |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | |
73 | 73 | case 'gr': |
74 | 74 | |
75 | - $this->result = date( 'w', strtotime( $this->date_time->format('Y-m-d H:i:s') ) ) + 1; |
|
75 | + $this->result = date('w', strtotime($this->date_time->format('Y-m-d H:i:s'))) + 1; |
|
76 | 76 | |
77 | 77 | break; |
78 | 78 | } |
@@ -87,11 +87,11 @@ discard block |
||
87 | 87 | */ |
88 | 88 | protected function persian_day_of_week() { |
89 | 89 | |
90 | - $this->day = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['persian'], $this->day); |
|
90 | + $this->day = str_replace($this->config['week_days_name']['english'], $this->config['week_days_name']['persian'], $this->day); |
|
91 | 91 | |
92 | - foreach ( $this->config['week_days_name']['persian'] as $key => $value ) { |
|
92 | + foreach ($this->config['week_days_name']['persian'] as $key => $value) { |
|
93 | 93 | |
94 | - if( $value == $this->day ) return $key += 1; |
|
94 | + if ($value == $this->day) return $key += 1; |
|
95 | 95 | |
96 | 96 | } |
97 | 97 | |
@@ -103,11 +103,11 @@ discard block |
||
103 | 103 | */ |
104 | 104 | protected function islamic_day_of_week() { |
105 | 105 | |
106 | - $this->day = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->geregorian_DayofWeek], $this->day); |
|
106 | + $this->day = str_replace($this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->geregorian_DayofWeek], $this->day); |
|
107 | 107 | |
108 | - foreach ( $this->config['week_days_name']['islamic'] as $key => $value ) { |
|
108 | + foreach ($this->config['week_days_name']['islamic'] as $key => $value) { |
|
109 | 109 | |
110 | - if( $value == $this->day ) return $key += 1; |
|
110 | + if ($value == $this->day) return $key += 1; |
|
111 | 111 | |
112 | 112 | } |
113 | 113 |
@@ -91,7 +91,9 @@ discard block |
||
91 | 91 | |
92 | 92 | foreach ( $this->config['week_days_name']['persian'] as $key => $value ) { |
93 | 93 | |
94 | - if( $value == $this->day ) return $key += 1; |
|
94 | + if( $value == $this->day ) { |
|
95 | + return $key += 1; |
|
96 | + } |
|
95 | 97 | |
96 | 98 | } |
97 | 99 | |
@@ -107,7 +109,9 @@ discard block |
||
107 | 109 | |
108 | 110 | foreach ( $this->config['week_days_name']['islamic'] as $key => $value ) { |
109 | 111 | |
110 | - if( $value == $this->day ) return $key += 1; |
|
112 | + if( $value == $this->day ) { |
|
113 | + return $key += 1; |
|
114 | + } |
|
111 | 115 | |
112 | 116 | } |
113 | 117 |
@@ -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 |
@@ -5,7 +5,6 @@ |
||
5 | 5 | use Datium\Tools\Convert; |
6 | 6 | use Datium\Tools\Leap; |
7 | 7 | use Datium\Tools\DayOf; |
8 | -use Datium\Tools\Translate; |
|
9 | 8 | |
10 | 9 | /** |
11 | 10 | * |
@@ -68,15 +68,15 @@ discard block |
||
68 | 68 | |
69 | 69 | $this->config = include('Config.php'); |
70 | 70 | |
71 | - $this->calendar_type = $this->config[ 'default_calendar' ]; |
|
71 | + $this->calendar_type = $this->config['default_calendar']; |
|
72 | 72 | |
73 | - date_default_timezone_set( $this->config['timezone'] ); |
|
73 | + date_default_timezone_set($this->config['timezone']); |
|
74 | 74 | |
75 | - switch( Datium::$call_type ) { |
|
75 | + switch (Datium::$call_type) { |
|
76 | 76 | |
77 | 77 | case 'now': |
78 | 78 | |
79 | - $this->date_time = new DateTime( 'now' ); |
|
79 | + $this->date_time = new DateTime('now'); |
|
80 | 80 | |
81 | 81 | $this->gregorian_DayofWeek = $this->date_time->format('w'); |
82 | 82 | |
@@ -86,11 +86,11 @@ discard block |
||
86 | 86 | |
87 | 87 | case 'make': |
88 | 88 | |
89 | - $this->date_time = new DateTime( 'now' ); |
|
89 | + $this->date_time = new DateTime('now'); |
|
90 | 90 | |
91 | - $this->date_time->setDate( self::$array_date['year'], self::$array_date['month'], self::$array_date['day'] ); |
|
91 | + $this->date_time->setDate(self::$array_date['year'], self::$array_date['month'], self::$array_date['day']); |
|
92 | 92 | |
93 | - $this->date_time->setTime( self::$array_date['hour'], self::$array_date['minute'], self::$array_date['second'] ); |
|
93 | + $this->date_time->setTime(self::$array_date['hour'], self::$array_date['minute'], self::$array_date['second']); |
|
94 | 94 | |
95 | 95 | $this->gregorian_DayofWeek = $this->date_time->format('w'); |
96 | 96 | |
@@ -124,17 +124,17 @@ discard block |
||
124 | 124 | |
125 | 125 | return (object) array( |
126 | 126 | |
127 | - 'second' => $this->date_time->format( 's' ), |
|
127 | + 'second' => $this->date_time->format('s'), |
|
128 | 128 | |
129 | - 'minute' => $this->date_time->format( 'm' ), |
|
129 | + 'minute' => $this->date_time->format('m'), |
|
130 | 130 | |
131 | - 'hour' => $this->date_time->format( 'H' ), |
|
131 | + 'hour' => $this->date_time->format('H'), |
|
132 | 132 | |
133 | - 'day' => $this->date_time->format( 'd' ), |
|
133 | + 'day' => $this->date_time->format('d'), |
|
134 | 134 | |
135 | - 'month' => $this->date_time->format( 'm' ), |
|
135 | + 'month' => $this->date_time->format('m'), |
|
136 | 136 | |
137 | - 'year' => $this->date_time->format( 'Y' ) |
|
137 | + 'year' => $this->date_time->format('Y') |
|
138 | 138 | |
139 | 139 | ); |
140 | 140 | |
@@ -163,12 +163,12 @@ discard block |
||
163 | 163 | * @param $second integer |
164 | 164 | * @return object |
165 | 165 | */ |
166 | - public static function create( $year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0 ) { |
|
166 | + public static function create($year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0) { |
|
167 | 167 | |
168 | 168 | /** |
169 | 169 | * When we want to set a Datetime object to Datium |
170 | 170 | */ |
171 | - if( func_num_args() === 1 ) { |
|
171 | + if (func_num_args() === 1) { |
|
172 | 172 | |
173 | 173 | self::$static_date_time = func_get_arg(0); |
174 | 174 | |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | |
177 | 177 | } else { |
178 | 178 | |
179 | - self::$array_date = array( 'year' => $year, 'month' => $month, 'day' => $day, 'hour' => $hour, 'minute' => $minute, 'second' => $second ); |
|
179 | + self::$array_date = array('year' => $year, 'month' => $month, 'day' => $day, 'hour' => $hour, 'minute' => $minute, 'second' => $second); |
|
180 | 180 | |
181 | 181 | self::$call_type = 'make'; |
182 | 182 | |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | |
187 | 187 | } |
188 | 188 | |
189 | - public static function between( $date_start, $date_end ) { |
|
189 | + public static function between($date_start, $date_end) { |
|
190 | 190 | |
191 | 191 | self::$date_start = $date_start; |
192 | 192 | |
@@ -198,11 +198,11 @@ discard block |
||
198 | 198 | |
199 | 199 | } |
200 | 200 | |
201 | - public function to( $calendar ) { |
|
201 | + public function to($calendar) { |
|
202 | 202 | |
203 | - $this->convert = new Convert( $this->date_time ); |
|
203 | + $this->convert = new Convert($this->date_time); |
|
204 | 204 | |
205 | - $this->date_time = $this->convert->to( $calendar ); |
|
205 | + $this->date_time = $this->convert->to($calendar); |
|
206 | 206 | |
207 | 207 | /** |
208 | 208 | * We need this part for DayOf class |
@@ -221,9 +221,9 @@ discard block |
||
221 | 221 | * @param $start datetime |
222 | 222 | * @param $end datetime |
223 | 223 | */ |
224 | - public static function diff( $start, $end ) { |
|
224 | + public static function diff($start, $end) { |
|
225 | 225 | |
226 | - return date_diff( $start, $end ); |
|
226 | + return date_diff($start, $end); |
|
227 | 227 | |
228 | 228 | } |
229 | 229 | |
@@ -232,13 +232,13 @@ discard block |
||
232 | 232 | * @param $value string |
233 | 233 | * @return object |
234 | 234 | */ |
235 | - public function add( $value ) { |
|
235 | + public function add($value) { |
|
236 | 236 | |
237 | - $this->date_interval_expression = str_replace( $this->config['date_simple'], $this->config['date_interval'], $value ); |
|
237 | + $this->date_interval_expression = str_replace($this->config['date_simple'], $this->config['date_interval'], $value); |
|
238 | 238 | |
239 | - $this->date_interval_expression = str_replace( ' ', '', 'P' . $this->date_interval_expression ); |
|
239 | + $this->date_interval_expression = str_replace(' ', '', 'P'.$this->date_interval_expression); |
|
240 | 240 | |
241 | - $this->date_time->add( new DateInterval( $this->date_interval_expression ) ); |
|
241 | + $this->date_time->add(new DateInterval($this->date_interval_expression)); |
|
242 | 242 | |
243 | 243 | return $this; |
244 | 244 | |
@@ -249,13 +249,13 @@ discard block |
||
249 | 249 | * @param $value |
250 | 250 | * @return obejct |
251 | 251 | */ |
252 | - public function sub( $value ) { |
|
252 | + public function sub($value) { |
|
253 | 253 | |
254 | - $this->date_interval_expression = str_replace( $this->config['date_simple'], $this->config['date_interval'], $value ); |
|
254 | + $this->date_interval_expression = str_replace($this->config['date_simple'], $this->config['date_interval'], $value); |
|
255 | 255 | |
256 | - $this->date_interval_expression = str_replace( ' ', '', 'P' . $this->date_interval_expression ); |
|
256 | + $this->date_interval_expression = str_replace(' ', '', 'P'.$this->date_interval_expression); |
|
257 | 257 | |
258 | - $this->date_time->sub( new DateInterval( $this->date_interval_expression ) ); |
|
258 | + $this->date_time->sub(new DateInterval($this->date_interval_expression)); |
|
259 | 259 | |
260 | 260 | return $this; |
261 | 261 | |
@@ -265,9 +265,9 @@ discard block |
||
265 | 265 | * Check if current year is leap or not |
266 | 266 | * @return boolean |
267 | 267 | */ |
268 | - public function leap( $type = 'gregorian') { |
|
268 | + public function leap($type = 'gregorian') { |
|
269 | 269 | |
270 | - $this->leap = new Leap( $this->date_time->format( 'Y' ), $type ); |
|
270 | + $this->leap = new Leap($this->date_time->format('Y'), $type); |
|
271 | 271 | |
272 | 272 | return $this->leap; |
273 | 273 | |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | */ |
279 | 279 | public function dayOf() { |
280 | 280 | |
281 | - $this->day_of = new DayOf( $this->date_time, $this->calendar_type ); |
|
281 | + $this->day_of = new DayOf($this->date_time, $this->calendar_type); |
|
282 | 282 | |
283 | 283 | return $this->day_of; |
284 | 284 | |
@@ -289,13 +289,13 @@ discard block |
||
289 | 289 | */ |
290 | 290 | public function events() { |
291 | 291 | |
292 | - if ( Datium::$call_type == 'between' ) { |
|
292 | + if (Datium::$call_type == 'between') { |
|
293 | 293 | |
294 | - $this->events = new Events( Datium::$date_start, Datium::$date_end ); |
|
294 | + $this->events = new Events(Datium::$date_start, Datium::$date_end); |
|
295 | 295 | |
296 | 296 | } else { |
297 | 297 | |
298 | - $this->events = new Events( $this->date_time ); |
|
298 | + $this->events = new Events($this->date_time); |
|
299 | 299 | |
300 | 300 | } |
301 | 301 | |
@@ -312,7 +312,7 @@ discard block |
||
312 | 312 | * |
313 | 313 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ |
314 | 314 | */ |
315 | - public function object(){ |
|
315 | + public function object() { |
|
316 | 316 | |
317 | 317 | return $this->date_time; |
318 | 318 | |
@@ -324,17 +324,17 @@ discard block |
||
324 | 324 | * @param $calendar string |
325 | 325 | * @param $format string |
326 | 326 | */ |
327 | - public function get( $format = 'Y-m-d H:i:s' ) { |
|
327 | + public function get($format = 'Y-m-d H:i:s') { |
|
328 | 328 | |
329 | - $fromConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_from ) . '.php' ); |
|
329 | + $fromConfig = include('CalendarSettings/'.ucfirst($this->translate_from).'.php'); |
|
330 | 330 | |
331 | - $toConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_to ) . '.php' ); |
|
331 | + $toConfig = include('CalendarSettings/'.ucfirst($this->translate_to).'.php'); |
|
332 | 332 | |
333 | - $string_date = $this->date_time->format( $format ); |
|
333 | + $string_date = $this->date_time->format($format); |
|
334 | 334 | |
335 | - $string_date = str_replace( $fromConfig['month'], $toConfig['month'], $string_date ); |
|
335 | + $string_date = str_replace($fromConfig['month'], $toConfig['month'], $string_date); |
|
336 | 336 | |
337 | - $string_date = str_replace( $fromConfig['days_of_week'], $toConfig['days_of_week'], $string_date ); |
|
337 | + $string_date = str_replace($fromConfig['days_of_week'], $toConfig['days_of_week'], $string_date); |
|
338 | 338 | |
339 | 339 | return $string_date; |
340 | 340 |
@@ -125,4 +125,4 @@ |
||
125 | 125 | */ |
126 | 126 | 'weekend' => array( 'friday' ) |
127 | 127 | |
128 | - ); |
|
128 | + ); |
@@ -35,9 +35,9 @@ |
||
35 | 35 | 'default_calendar' => 'gregorian', |
36 | 36 | |
37 | 37 | |
38 | - 'date_interval' => array( 'D', 'M', 'Y', 'H', 'm', 'S' ), |
|
38 | + 'date_interval' => array('D', 'M', 'Y', 'H', 'm', 'S'), |
|
39 | 39 | |
40 | 40 | |
41 | - 'date_simple' => array( 'day', ' month', ' year', ' hour', ' minute', ' second' ), |
|
41 | + 'date_simple' => array('day', ' month', ' year', ' hour', ' minute', ' second'), |
|
42 | 42 | |
43 | 43 | ); |
@@ -3,66 +3,66 @@ |
||
3 | 3 | use Datium\Datium as Datium; |
4 | 4 | use Datium\Tools\Convert as Covnert; |
5 | 5 | |
6 | -try{ |
|
6 | +try { |
|
7 | 7 | |
8 | -require_once( 'vendor/autoload.php' ); |
|
8 | +require_once('vendor/autoload.php'); |
|
9 | 9 | // var_dump( Datium::create( 2020, 07, 11 )->to( 'shamsi' )->get() ); |
10 | 10 | // var_dump( Datium::create( 2020, 07, 11 )->to( 'ghamari' )->get() ); |
11 | 11 | // var_dump( Datium::create( Datium::now()->object() )->get() ); |
12 | 12 | echo '<br>this year:<br>'; |
13 | -var_dump( Datium::now()->to( 'shamsi' )->get( 'l jS F Y h:i:s A' ) ); |
|
13 | +var_dump(Datium::now()->to('shamsi')->get('l jS F Y h:i:s A')); |
|
14 | 14 | echo "<br>"; |
15 | -var_dump( Datium::now()->to( 'shamsi' )->sub('3 year')->get() ); |
|
15 | +var_dump(Datium::now()->to('shamsi')->sub('3 year')->get()); |
|
16 | 16 | echo "<br>"; |
17 | -var_dump( Datium::now()->to( 'shamsi' )->add('3 year')->get() ); |
|
17 | +var_dump(Datium::now()->to('shamsi')->add('3 year')->get()); |
|
18 | 18 | echo "<br>"; |
19 | -var_dump( Datium::now()->get( 'l jS F Y h:i:s A' ) ); |
|
19 | +var_dump(Datium::now()->get('l jS F Y h:i:s A')); |
|
20 | 20 | echo "<br>Leap year "; |
21 | -var_dump( Datium::now()->leap()->get() ); |
|
21 | +var_dump(Datium::now()->leap()->get()); |
|
22 | 22 | echo "<br>Create new DateTime: "; |
23 | -var_dump( Datium::create(2000, 1, 1, 0, 0, 0)->get() ); |
|
23 | +var_dump(Datium::create(2000, 1, 1, 0, 0, 0)->get()); |
|
24 | 24 | echo "<br>"; |
25 | 25 | echo 'Is next year leap? '; |
26 | -var_dump( Datium::now()->add('1 year')->leap()->get() ); |
|
26 | +var_dump(Datium::now()->add('1 year')->leap()->get()); |
|
27 | 27 | echo "<br>"; |
28 | 28 | echo "Day of Year in gregorian:"; |
29 | 29 | echo "<br>"; |
30 | -var_dump( Datium::now()->dayOf()->year() ); |
|
30 | +var_dump(Datium::now()->dayOf()->year()); |
|
31 | 31 | echo "<br>"; |
32 | 32 | echo "Day of Year in shamsi:"; |
33 | 33 | echo "<br>"; |
34 | -var_dump( Datium::now()->to('shamsi')->dayOf()->year() ); |
|
34 | +var_dump(Datium::now()->to('shamsi')->dayOf()->year()); |
|
35 | 35 | echo "<br>"; |
36 | 36 | echo "Day of Year in ghamari:"; |
37 | 37 | echo "<br>"; |
38 | -var_dump( Datium::now()->to( 'ghamari' )->dayOf()->year() ); |
|
38 | +var_dump(Datium::now()->to('ghamari')->dayOf()->year()); |
|
39 | 39 | echo "<br>"; |
40 | 40 | echo "Day of Week"; |
41 | 41 | echo "<br>"; |
42 | -var_dump( Datium::now()->dayOf()->week() ); |
|
42 | +var_dump(Datium::now()->dayOf()->week()); |
|
43 | 43 | echo "<br>"; |
44 | 44 | echo "Change date form gregorian to shamsi with method: "; |
45 | -var_dump( Datium::create( 1989, 10, 27 )->to( 'shamsi' )->get( 'l jS F Y h:i:s A' ) ); |
|
45 | +var_dump(Datium::create(1989, 10, 27)->to('shamsi')->get('l jS F Y h:i:s A')); |
|
46 | 46 | echo "<br>"; |
47 | -var_dump( Datium::now()->to( 'ghamari' )->get( 'l jS F Y h:i:s A' ) ); |
|
47 | +var_dump(Datium::now()->to('ghamari')->get('l jS F Y h:i:s A')); |
|
48 | 48 | echo "<br>"; |
49 | 49 | echo "<br>"; |
50 | 50 | echo "<br>is persian holiday? "; |
51 | -var_dump( Datium::between( Datium::now()->object() , Datium::now()->add( '3 month' )->object() )->events()->local( 'us' )->local( 'ir' )->get() ); |
|
51 | +var_dump(Datium::between(Datium::now()->object(), Datium::now()->add('3 month')->object())->events()->local('us')->local('ir')->get()); |
|
52 | 52 | echo 'return international days'; |
53 | -var_dump( Datium::between( Datium::now()->object() , Datium::now()->add('4 month')->object() )->events()->international()->get() ); |
|
53 | +var_dump(Datium::between(Datium::now()->object(), Datium::now()->add('4 month')->object())->events()->international()->get()); |
|
54 | 54 | echo 'Convert gregorian to perisan'; |
55 | -var_dump( Datium::now()->to('shamsi')->get() ); |
|
55 | +var_dump(Datium::now()->to('shamsi')->get()); |
|
56 | 56 | echo 'Today\'s events:'; |
57 | -var_dump( Datium::now()->events()->local( 'ir' )->get() ); |
|
57 | +var_dump(Datium::now()->events()->local('ir')->get()); |
|
58 | 58 | echo 'Date diff'; |
59 | -$diff = Datium::diff( Datium::now()->object(), Datium::now()->add('5 day')->object() ); |
|
60 | -var_dump( $diff->days ); |
|
61 | -var_dump( Datium::create( 2015, 11, 9 )->to( 'ghamari' )->get() ); |
|
59 | +$diff = Datium::diff(Datium::now()->object(), Datium::now()->add('5 day')->object()); |
|
60 | +var_dump($diff->days); |
|
61 | +var_dump(Datium::create(2015, 11, 9)->to('ghamari')->get()); |
|
62 | 62 | |
63 | 63 | |
64 | -} catch (Exception $e ) { |
|
64 | +} catch (Exception $e) { |
|
65 | 65 | |
66 | - var_dump( $e ); |
|
66 | + var_dump($e); |
|
67 | 67 | |
68 | 68 | } |