| @@ -3,81 +3,81 @@ | ||
| 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' ); | |
| 9 | -var_dump( Datium::create( 1394, 9, 24 )->from( 'jalali' )->get() ); | |
| 10 | -var_dump( Datium::create( 2020, 07, 11 )->to( 'jalali' )->get() ); | |
| 11 | -var_dump( Datium::create( 2020, 07, 11 )->to( 'hijri' )->get() ); | |
| 8 | +require_once('vendor/autoload.php'); | |
| 9 | +var_dump(Datium::create(1394, 9, 24)->from('jalali')->get()); | |
| 10 | +var_dump(Datium::create(2020, 07, 11)->to('jalali')->get()); | |
| 11 | +var_dump(Datium::create(2020, 07, 11)->to('hijri')->get()); | |
| 12 | 12 | echo '<br>this year:<br>'; | 
| 13 | -var_dump( Datium::create( 2016, 6, 25, 12, 0, 0 )->to( 'hijri' )->lang( 'ar' )->get('l jS F Y h:i:s A') ); | |
| 13 | +var_dump(Datium::create(2016, 6, 25, 12, 0, 0)->to('hijri')->lang('ar')->get('l jS F Y h:i:s A')); | |
| 14 | 14 | echo "<br>"; | 
| 15 | -var_dump( Datium::now()->to( 'jalali' )->get('l jS F Y h:i:s A') ); | |
| 15 | +var_dump(Datium::now()->to('jalali')->get('l jS F Y h:i:s A')); | |
| 16 | 16 | echo "<br>"; | 
| 17 | -var_dump( Datium::now()->to( 'jalali' )->sub('3 year')->get() ); | |
| 17 | +var_dump(Datium::now()->to('jalali')->sub('3 year')->get()); | |
| 18 | 18 | echo "<br>"; | 
| 19 | -var_dump( Datium::now()->to( 'jalali' )->add('3 year')->get() ); | |
| 19 | +var_dump(Datium::now()->to('jalali')->add('3 year')->get()); | |
| 20 | 20 | echo "<br>"; | 
| 21 | -var_dump( Datium::now()->get( 'l jS F Y h:i:s A' ) ); | |
| 21 | +var_dump(Datium::now()->get('l jS F Y h:i:s A')); | |
| 22 | 22 | echo "<br>Leap year "; | 
| 23 | -var_dump( Datium::now()->leap()->get() ); | |
| 23 | +var_dump(Datium::now()->leap()->get()); | |
| 24 | 24 | echo "<br>Create new DateTime: "; | 
| 25 | -var_dump( Datium::create(2000, 1, 1, 0, 0, 0)->get() ); | |
| 25 | +var_dump(Datium::create(2000, 1, 1, 0, 0, 0)->get()); | |
| 26 | 26 | echo "<br>"; | 
| 27 | 27 | echo 'Is next year leap? '; | 
| 28 | -var_dump( Datium::now()->add('1 year')->leap()->get() ); | |
| 28 | +var_dump(Datium::now()->add('1 year')->leap()->get()); | |
| 29 | 29 | echo "<br>"; | 
| 30 | 30 | echo "Day of Year in gregorian:"; | 
| 31 | 31 | echo "<br>"; | 
| 32 | -var_dump( Datium::now()->dayOf()->year() ); | |
| 32 | +var_dump(Datium::now()->dayOf()->year()); | |
| 33 | 33 | echo "<br>"; | 
| 34 | 34 | echo "Day of Year in jalali:"; | 
| 35 | 35 | echo "<br>"; | 
| 36 | -var_dump( Datium::now()->to('jalali')->dayOf()->year() ); | |
| 36 | +var_dump(Datium::now()->to('jalali')->dayOf()->year()); | |
| 37 | 37 | echo "<br>"; | 
| 38 | 38 | echo "Day of Year in hijri:"; | 
| 39 | 39 | echo "<br>"; | 
| 40 | -var_dump( Datium::now()->to( 'hijri' )->dayOf()->year() ); | |
| 40 | +var_dump(Datium::now()->to('hijri')->dayOf()->year()); | |
| 41 | 41 | echo "<br>"; | 
| 42 | 42 | echo "Day of Week : gregorian"; | 
| 43 | 43 | echo "<br>"; | 
| 44 | -var_dump( Datium::now()->dayOf()->week() ); | |
| 44 | +var_dump(Datium::now()->dayOf()->week()); | |
| 45 | 45 | echo "<br>"; | 
| 46 | 46 | echo "Day of Week in Date(2015, 1, 1)"; | 
| 47 | 47 | echo "<br>"; | 
| 48 | -var_dump( Datium::create( 2015, 1, 1 )->dayOf()->week() ); | |
| 48 | +var_dump(Datium::create(2015, 1, 1)->dayOf()->week()); | |
| 49 | 49 | echo "<br>"; | 
| 50 | 50 | echo "Day of Week : jalali"; | 
| 51 | 51 | echo "<br>"; | 
| 52 | -var_dump( Datium::now()->to('jalali')->dayOf()->week() ); | |
| 52 | +var_dump(Datium::now()->to('jalali')->dayOf()->week()); | |
| 53 | 53 | echo "<br>"; | 
| 54 | 54 | echo "Day of Week in Date(2015, 1, 1)"; | 
| 55 | 55 | echo "<br>"; | 
| 56 | -var_dump( Datium::create( 2015, 1, 1 )->to('jalali')->dayOf()->week() ); | |
| 56 | +var_dump(Datium::create(2015, 1, 1)->to('jalali')->dayOf()->week()); | |
| 57 | 57 | echo "<br>"; | 
| 58 | 58 | echo "Change date form gregorian to jalali with method: "; | 
| 59 | -var_dump( Datium::create( 1989, 10, 27 )->to( 'jalali' )->get( 'l jS F Y h:i:s A' ) ); | |
| 59 | +var_dump(Datium::create(1989, 10, 27)->to('jalali')->get('l jS F Y h:i:s A')); | |
| 60 | 60 | echo "<br>"; | 
| 61 | -var_dump( Datium::now()->to( 'hijri' )->get( 'l jS F Y h:i:s A' ) ); | |
| 61 | +var_dump(Datium::now()->to('hijri')->get('l jS F Y h:i:s A')); | |
| 62 | 62 | echo "<br>"; | 
| 63 | -var_dump( Datium::now()->to( 'hijri' )->lang( 'ar' )->get( 'h:i:s Y jS l F' ) ); | |
| 63 | +var_dump(Datium::now()->to('hijri')->lang('ar')->get('h:i:s Y jS l F')); | |
| 64 | 64 | echo "<br>"; | 
| 65 | 65 | echo "<br>is persian holiday? "; | 
| 66 | 66 | // var_dump( Datium::between( Datium::now()->object() , Datium::now()->add( '3 month' )->object() )->events()->local( 'us' )->local( 'ir' )->get() ); | 
| 67 | 67 | echo 'return international days'; | 
| 68 | 68 |  // var_dump(  Datium::between( Datium::now()->object() , Datium::now()->add('4 month')->object() )->events()->international()->get() ); | 
| 69 | 69 | echo 'Convert gregorian to perisan'; | 
| 70 | -var_dump( Datium::now()->to('jalali')->get() ); | |
| 70 | +var_dump(Datium::now()->to('jalali')->get()); | |
| 71 | 71 | echo 'Today\'s events:'; | 
| 72 | 72 | // var_dump( Datium::now()->events()->local( 'ir' )->get() ); | 
| 73 | 73 | echo 'Date diff'; | 
| 74 | -$diff = Datium::diff( Datium::now()->object(), Datium::now()->add('5 day')->object() ); | |
| 75 | -var_dump( $diff->days ); | |
| 76 | -var_dump( Datium::create( 2015, 11, 9 )->to( 'hijri' )->get() ); | |
| 74 | +$diff = Datium::diff(Datium::now()->object(), Datium::now()->add('5 day')->object()); | |
| 75 | +var_dump($diff->days); | |
| 76 | +var_dump(Datium::create(2015, 11, 9)->to('hijri')->get()); | |
| 77 | 77 | |
| 78 | 78 | |
| 79 | -} catch (Exception $e ) { | |
| 79 | +} catch (Exception $e) { | |
| 80 | 80 | |
| 81 | - var_dump( $e ); | |
| 81 | + var_dump($e); | |
| 82 | 82 | |
| 83 | 83 | } | 
| @@ -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 | } | 
| @@ -26,9 +26,9 @@ discard block | ||
| 26 | 26 | |
| 27 | 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 | 33 | Events::$date_start = $date_time; | 
| 34 | 34 | |
| @@ -56,19 +56,19 @@ 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 | 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 | |
| @@ -87,13 +87,13 @@ discard block | ||
| 87 | 87 | */ | 
| 88 | 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 | |
| @@ -118,49 +118,49 @@ 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 | 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 | 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 | 147 | break; | 
| 148 | 148 | |
| 149 | 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 | 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 | 165 | return $this; | 
| 166 | 166 | |
| @@ -180,7 +180,7 @@ discard block | ||
| 180 | 180 | |
| 181 | 181 |  	public function international() { | 
| 182 | 182 | |
| 183 | - $this->fetch( 'Global/global.php' ); | |
| 183 | +		$this->fetch('Global/global.php'); | |
| 184 | 184 | |
| 185 | 185 | return $this; | 
| 186 | 186 | |
| @@ -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 | |
| @@ -63,23 +63,23 @@ 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 | } | 
| 77 | 77 | |
| 78 | -  public function from( $calendar ) { | |
| 78 | +  public function from($calendar) { | |
| 79 | 79 | |
| 80 | - $this->calendar_file = include( 'CalendarSettings/' . ucfirst( $calendar ) . '.php' ); | |
| 80 | +    $this->calendar_file = include('CalendarSettings/'.ucfirst($calendar).'.php'); | |
| 81 | 81 | |
| 82 | - return $this->calendar_file[ 'convert_from' ]( $this->date_time ); | |
| 82 | + return $this->calendar_file['convert_from']($this->date_time); | |
| 83 | 83 | |
| 84 | 84 | } | 
| 85 | 85 | |
| @@ -91,11 +91,11 @@ discard block | ||
| 91 | 91 | * | 
| 92 | 92 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ | 
| 93 | 93 | */ | 
| 94 | -  public function to( $calendar ) { | |
| 94 | +  public function to($calendar) { | |
| 95 | 95 | |
| 96 | - $this->calendar_file = include( 'CalendarSettings/' . ucfirst( $calendar ) . '.php' ); | |
| 96 | +    $this->calendar_file = include('CalendarSettings/'.ucfirst($calendar).'.php'); | |
| 97 | 97 | |
| 98 | - return $this->calendar_file[ 'convert_to' ]( $this->date_time ); | |
| 98 | + return $this->calendar_file['convert_to']($this->date_time); | |
| 99 | 99 | |
| 100 | 100 | } | 
| 101 | 101 | |
| @@ -104,9 +104,9 @@ discard block | ||
| 104 | 104 | * @since Oct, 16 2015 | 
| 105 | 105 | * @return object | 
| 106 | 106 | */ | 
| 107 | -public function jalaliToGregorian( $date_time ) { | |
| 107 | +public function jalaliToGregorian($date_time) { | |
| 108 | 108 | |
| 109 | -$this->config = include( 'Jalali.php' ); | |
| 109 | +$this->config = include('Jalali.php'); | |
| 110 | 110 | |
| 111 | 111 | $this->date_time = $date_time; | 
| 112 | 112 | |
| @@ -118,41 +118,41 @@ discard block | ||
| 118 | 118 | |
| 119 | 119 | $days_of_year = 0; | 
| 120 | 120 | |
| 121 | -foreach ( $this->config['month_days_number'] as $month => $value ) { | |
| 121 | +foreach ($this->config['month_days_number'] as $month => $value) { | |
| 122 | 122 | |
| 123 | - if( $this->month > $month ) $days_of_year += $value; | |
| 123 | + if ($this->month > $month) $days_of_year += $value; | |
| 124 | 124 | |
| 125 | 125 | } | 
| 126 | 126 | |
| 127 | 127 | $days_of_year += $this->day; | 
| 128 | 128 | |
| 129 | -$days_of_leap_years = intval( ( ( $this->year - 1 ) / 4 ) ); | |
| 129 | +$days_of_leap_years = intval((($this->year - 1) / 4)); | |
| 130 | 130 | |
| 131 | -$days_of_jalali_years = ( ( ( $this->year - 1 ) * 365 ) + $days_of_year + $days_of_leap_years ); | |
| 131 | +$days_of_jalali_years = ((($this->year - 1) * 365) + $days_of_year + $days_of_leap_years); | |
| 132 | 132 | |
| 133 | 133 | $days_of_gregorain_years = $days_of_jalali_years + 226899; | 
| 134 | 134 | |
| 135 | -if ( $this->month < 10 )  { | |
| 135 | +if ($this->month < 10) { | |
| 136 | 136 | |
| 137 | -$days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 621 ) / 4 ) ); | |
| 137 | +$days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 621) / 4)); | |
| 138 | 138 | |
| 139 | 139 | } | 
| 140 | 140 | |
| 141 | -elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) { | |
| 141 | +elseif (((10 == $this->month) && ($this->day > 10)) || ($this->month > 10)) { | |
| 142 | 142 | |
| 143 | -$days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 622 ) / 4 ) ); | |
| 143 | +$days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 622) / 4)); | |
| 144 | 144 | |
| 145 | 145 | } | 
| 146 | 146 | |
| 147 | -$gregorian_month = ( $days_of_gregorain_years % 365 ); | |
| 147 | +$gregorian_month = ($days_of_gregorain_years % 365); | |
| 148 | 148 | |
| 149 | -$gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1; | |
| 149 | +$gregorian_year = intval($days_of_gregorain_years / 365) + 1; | |
| 150 | 150 | |
| 151 | -$this->config = include( 'Gregorian.php' ); | |
| 151 | +$this->config = include('Gregorian.php'); | |
| 152 | 152 | |
| 153 | 153 |  foreach ($this->config['month_days_number'] as $month => $value) { | 
| 154 | 154 | |
| 155 | - if ( $gregorian_month < $value ) break; | |
| 155 | + if ($gregorian_month < $value) break; | |
| 156 | 156 | |
| 157 | 157 | $gregorian_month -= $value; | 
| 158 | 158 | } | 
| @@ -161,7 +161,7 @@ discard block | ||
| 161 | 161 | |
| 162 | 162 | $gregorian_month = $month; | 
| 163 | 163 | |
| 164 | - $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day ); | |
| 164 | + $this->date_time->setDate($gregorian_year, $gregorian_month, $gregorian_day); | |
| 165 | 165 | |
| 166 | 166 | |
| 167 | 167 | return $this->date_time; | 
| @@ -173,7 +173,7 @@ discard block | ||
| 173 | 173 | * @since Oct, 17 2015 | 
| 174 | 174 | * @return object | 
| 175 | 175 | */ | 
| 176 | -public function jalaliToHijri( $date_time ) { | |
| 176 | +public function jalaliToHijri($date_time) { | |
| 177 | 177 | |
| 178 | 178 | $this->date_time = $date_time; | 
| 179 | 179 | |
| @@ -183,11 +183,11 @@ discard block | ||
| 183 | 183 | |
| 184 | 184 |      $this->day = $this->date_time->format('d'); | 
| 185 | 185 | |
| 186 | - $this->temp_day = 0 ; | |
| 186 | + $this->temp_day = 0; | |
| 187 | 187 | |
| 188 | - $this->config = include( 'Jalali.php' ); | |
| 188 | +    $this->config = include('Jalali.php'); | |
| 189 | 189 | |
| 190 | -    for ( $i = 1 ; $i < $this->month ; $i++ ) { | |
| 190 | +    for ($i = 1; $i < $this->month; $i++) { | |
| 191 | 191 | |
| 192 | 192 | $this->temp_day += $this->config['month_days_number'][$i]; | 
| 193 | 193 | |
| @@ -195,13 +195,13 @@ discard block | ||
| 195 | 195 | |
| 196 | 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 | - if( $this->leap->get() && $this->month > 11 ) $this->temp_day++; | |
| 200 | + if ($this->leap->get() && $this->month > 11) $this->temp_day++; | |
| 201 | 201 | |
| 202 | - $_year = ( ( ( ( ( $this->year - 1 ) * 365.2422 ) + $this->temp_day ) - 119) / 354.3670 ) + 1; | |
| 202 | + $_year = ((((($this->year - 1) * 365.2422) + $this->temp_day) - 119) / 354.3670) + 1; | |
| 203 | 203 | |
| 204 | - $_year = explode( '.', $_year ); | |
| 204 | +    $_year = explode('.', $_year); | |
| 205 | 205 | |
| 206 | 206 | $this->year = $_year[0]; | 
| 207 | 207 | |
| @@ -209,7 +209,7 @@ discard block | ||
| 209 | 209 | |
| 210 | 210 | $var_temp = '0.0'; | 
| 211 | 211 | |
| 212 | -      for ( $i = strlen( $_month ); $i > 2; $i-- ) { | |
| 212 | +      for ($i = strlen($_month); $i > 2; $i--) { | |
| 213 | 213 | |
| 214 | 214 | $var_temp .= '0'; | 
| 215 | 215 | |
| @@ -217,11 +217,11 @@ discard block | ||
| 217 | 217 | |
| 218 | 218 | $var_temp .= '1'; | 
| 219 | 219 | |
| 220 | - $_month = $_month * $var_temp ; | |
| 220 | + $_month = $_month * $var_temp; | |
| 221 | 221 | |
| 222 | - $_month = ( $_month * 12 ) + 1; | |
| 222 | + $_month = ($_month * 12) + 1; | |
| 223 | 223 | |
| 224 | - $_month = explode( '.', $_month ); | |
| 224 | +    $_month = explode('.', $_month); | |
| 225 | 225 | |
| 226 | 226 | $this->month = $_month[0]; | 
| 227 | 227 | |
| @@ -229,9 +229,9 @@ discard block | ||
| 229 | 229 | |
| 230 | 230 | $var_temp = '0.0'; | 
| 231 | 231 | |
| 232 | -    for ( $i = strlen( $_day );  $i > 2;  $i-- ) { | |
| 232 | +    for ($i = strlen($_day); $i > 2; $i--) { | |
| 233 | 233 | |
| 234 | - $var_temp .= '0' ; | |
| 234 | + $var_temp .= '0'; | |
| 235 | 235 | |
| 236 | 236 | } | 
| 237 | 237 | |
| @@ -239,13 +239,13 @@ discard block | ||
| 239 | 239 | |
| 240 | 240 | $_day = $_day * $var_temp; | 
| 241 | 241 | |
| 242 | - $_day = ( $_day * 29.530 ); | |
| 242 | + $_day = ($_day * 29.530); | |
| 243 | 243 | |
| 244 | - $_day = explode( '.', $_day ); | |
| 244 | +    $_day = explode('.', $_day); | |
| 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 | 250 | return $this->date_time; | 
| 251 | 251 | |
| @@ -256,7 +256,7 @@ discard block | ||
| 256 | 256 | * @since Oct, 17 2015 | 
| 257 | 257 | * @return object | 
| 258 | 258 | */ | 
| 259 | -public function hijriToJalali( $date_time ) { | |
| 259 | +public function hijriToJalali($date_time) { | |
| 260 | 260 | |
| 261 | 261 | $this->date_time = $date_time; | 
| 262 | 262 | |
| @@ -268,33 +268,33 @@ discard block | ||
| 268 | 268 | |
| 269 | 269 | $days_of_year = 0; | 
| 270 | 270 | |
| 271 | -$this->config = include( 'Hijri.php' ); | |
| 271 | +$this->config = include('Hijri.php'); | |
| 272 | 272 | |
| 273 | -foreach ( $this->config['month_days_number'] as $month => $value ) { | |
| 273 | +foreach ($this->config['month_days_number'] as $month => $value) { | |
| 274 | 274 | |
| 275 | - if( $this->month > $month ) $days_of_year += $value; | |
| 275 | + if ($this->month > $month) $days_of_year += $value; | |
| 276 | 276 | |
| 277 | 277 | } | 
| 278 | 278 | |
| 279 | 279 | $days_of_year += $this->day; | 
| 280 | 280 | |
| 281 | -$days_of_leap_years = intval( ( ( $this->year - 1 ) / 3 ) ); | |
| 281 | +$days_of_leap_years = intval((($this->year - 1) / 3)); | |
| 282 | 282 | |
| 283 | -$days_of_hijri_years = ( ( ( $this->year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years ); | |
| 283 | +$days_of_hijri_years = ((($this->year - 1) * 354) + $days_of_year + $days_of_leap_years); | |
| 284 | 284 | |
| 285 | 285 | $days_of_jalali_years = $days_of_hijri_years + 179; | 
| 286 | 286 | |
| 287 | -$days_of_jalali_years = $days_of_jalali_years - intval( ( ( $this->year - 43 ) / 4 ) ); | |
| 287 | +$days_of_jalali_years = $days_of_jalali_years - intval((($this->year - 43) / 4)); | |
| 288 | 288 | |
| 289 | -$jalali_month = ( $days_of_jalali_years % 365 ); | |
| 289 | +$jalali_month = ($days_of_jalali_years % 365); | |
| 290 | 290 | |
| 291 | -$jalali_year = intval( $days_of_jalali_years / 365 ) + 1; | |
| 291 | +$jalali_year = intval($days_of_jalali_years / 365) + 1; | |
| 292 | 292 | |
| 293 | -$this->config = include( 'Jalali.php' ); | |
| 293 | +$this->config = include('Jalali.php'); | |
| 294 | 294 | |
| 295 | 295 |  foreach ($this->config['month_days_number'] as $month => $value) { | 
| 296 | 296 | |
| 297 | - if ( $jalali_month < $value ) break; | |
| 297 | + if ($jalali_month < $value) break; | |
| 298 | 298 | |
| 299 | 299 | $jalali_month -= $value; | 
| 300 | 300 | } | 
| @@ -303,7 +303,7 @@ discard block | ||
| 303 | 303 | |
| 304 | 304 | $jalali_month = $month; | 
| 305 | 305 | |
| 306 | - $this->date_time->setDate( $jalali_year, $jalali_month, $jalali_day ); | |
| 306 | + $this->date_time->setDate($jalali_year, $jalali_month, $jalali_day); | |
| 307 | 307 | |
| 308 | 308 | return $this->date_time; | 
| 309 | 309 | |
| @@ -314,7 +314,7 @@ discard block | ||
| 314 | 314 | * @since Oct, 17 2015 | 
| 315 | 315 | * @return object | 
| 316 | 316 | */ | 
| 317 | -  public function hijriToGregorian( $date_time ) { | |
| 317 | +  public function hijriToGregorian($date_time) { | |
| 318 | 318 | |
| 319 | 319 | $this->date_time = $date_time; | 
| 320 | 320 | |
| @@ -326,33 +326,33 @@ discard block | ||
| 326 | 326 | |
| 327 | 327 | $days_of_year = 0; | 
| 328 | 328 | |
| 329 | - $this->config = include( 'Hijri.php' ); | |
| 329 | +    $this->config = include('Hijri.php'); | |
| 330 | 330 | |
| 331 | -    foreach ( $this->config['month_days_number'] as $month => $value ) { | |
| 331 | +    foreach ($this->config['month_days_number'] as $month => $value) { | |
| 332 | 332 | |
| 333 | - if( $this->month > $month ) $days_of_year += $value; | |
| 333 | + if ($this->month > $month) $days_of_year += $value; | |
| 334 | 334 | |
| 335 | 335 | } | 
| 336 | 336 | |
| 337 | 337 | $days_of_year += $this->day; | 
| 338 | 338 | |
| 339 | - $days_of_leap_years = intval( ( ( $this->year - 1 ) / 3 ) ); | |
| 339 | + $days_of_leap_years = intval((($this->year - 1) / 3)); | |
| 340 | 340 | |
| 341 | - $days_of_hijri_years = ( ( ( $this->year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years ); | |
| 341 | + $days_of_hijri_years = ((($this->year - 1) * 354) + $days_of_year + $days_of_leap_years); | |
| 342 | 342 | |
| 343 | 343 | $days_of_gregorain_years = $days_of_hijri_years + 227078; | 
| 344 | 344 | |
| 345 | - $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 578 ) / 4 ) ); | |
| 345 | + $days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 578) / 4)); | |
| 346 | 346 | |
| 347 | - $gregorian_month = ( $days_of_gregorain_years % 365 ); | |
| 347 | + $gregorian_month = ($days_of_gregorain_years % 365); | |
| 348 | 348 | |
| 349 | - $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1; | |
| 349 | + $gregorian_year = intval($days_of_gregorain_years / 365) + 1; | |
| 350 | 350 | |
| 351 | - $this->config = include( 'Gregorian.php' ); | |
| 351 | +    $this->config = include('Gregorian.php'); | |
| 352 | 352 | |
| 353 | 353 |      foreach ($this->config['month_days_number'] as $month => $value) { | 
| 354 | 354 | |
| 355 | - if ( $gregorian_month < $value ) break; | |
| 355 | + if ($gregorian_month < $value) break; | |
| 356 | 356 | |
| 357 | 357 | $gregorian_month -= $value; | 
| 358 | 358 | } | 
| @@ -361,7 +361,7 @@ discard block | ||
| 361 | 361 | |
| 362 | 362 | $gregorian_month = $month; | 
| 363 | 363 | |
| 364 | - $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day ); | |
| 364 | + $this->date_time->setDate($gregorian_year, $gregorian_month, $gregorian_day); | |
| 365 | 365 | |
| 366 | 366 | return $this->date_time; | 
| 367 | 367 | |
| @@ -120,7 +120,9 @@ discard block | ||
| 120 | 120 | |
| 121 | 121 |  foreach ( $this->config['month_days_number'] as $month => $value ) { | 
| 122 | 122 | |
| 123 | - if( $this->month > $month ) $days_of_year += $value; | |
| 123 | +  if( $this->month > $month ) { | |
| 124 | + $days_of_year += $value; | |
| 125 | + } | |
| 124 | 126 | |
| 125 | 127 | } | 
| 126 | 128 | |
| @@ -136,9 +138,7 @@ discard block | ||
| 136 | 138 | |
| 137 | 139 | $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 621 ) / 4 ) ); | 
| 138 | 140 | |
| 139 | -} | |
| 140 | - | |
| 141 | -elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) { | |
| 141 | +} elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) { | |
| 142 | 142 | |
| 143 | 143 | $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 622 ) / 4 ) ); | 
| 144 | 144 | |
| @@ -152,7 +152,9 @@ discard block | ||
| 152 | 152 | |
| 153 | 153 |  foreach ($this->config['month_days_number'] as $month => $value) { | 
| 154 | 154 | |
| 155 | - if ( $gregorian_month < $value ) break; | |
| 155 | +  if ( $gregorian_month < $value ) { | |
| 156 | + break; | |
| 157 | + } | |
| 156 | 158 | |
| 157 | 159 | $gregorian_month -= $value; | 
| 158 | 160 | } | 
| @@ -197,7 +199,9 @@ discard block | ||
| 197 | 199 | |
| 198 | 200 | $this->leap = new Leap( $this->year ); | 
| 199 | 201 | |
| 200 | - if( $this->leap->get() && $this->month > 11 ) $this->temp_day++; | |
| 202 | +    if( $this->leap->get() && $this->month > 11 ) { | |
| 203 | + $this->temp_day++; | |
| 204 | + } | |
| 201 | 205 | |
| 202 | 206 | $_year = ( ( ( ( ( $this->year - 1 ) * 365.2422 ) + $this->temp_day ) - 119) / 354.3670 ) + 1; | 
| 203 | 207 | |
| @@ -272,7 +276,9 @@ discard block | ||
| 272 | 276 | |
| 273 | 277 |  foreach ( $this->config['month_days_number'] as $month => $value ) { | 
| 274 | 278 | |
| 275 | - if( $this->month > $month ) $days_of_year += $value; | |
| 279 | +  if( $this->month > $month ) { | |
| 280 | + $days_of_year += $value; | |
| 281 | + } | |
| 276 | 282 | |
| 277 | 283 | } | 
| 278 | 284 | |
| @@ -294,7 +300,9 @@ discard block | ||
| 294 | 300 | |
| 295 | 301 |  foreach ($this->config['month_days_number'] as $month => $value) { | 
| 296 | 302 | |
| 297 | - if ( $jalali_month < $value ) break; | |
| 303 | +  if ( $jalali_month < $value ) { | |
| 304 | + break; | |
| 305 | + } | |
| 298 | 306 | |
| 299 | 307 | $jalali_month -= $value; | 
| 300 | 308 | } | 
| @@ -330,7 +338,9 @@ discard block | ||
| 330 | 338 | |
| 331 | 339 |      foreach ( $this->config['month_days_number'] as $month => $value ) { | 
| 332 | 340 | |
| 333 | - if( $this->month > $month ) $days_of_year += $value; | |
| 341 | +      if( $this->month > $month ) { | |
| 342 | + $days_of_year += $value; | |
| 343 | + } | |
| 334 | 344 | |
| 335 | 345 | } | 
| 336 | 346 | |
| @@ -352,7 +362,9 @@ discard block | ||
| 352 | 362 | |
| 353 | 363 |      foreach ($this->config['month_days_number'] as $month => $value) { | 
| 354 | 364 | |
| 355 | - if ( $gregorian_month < $value ) break; | |
| 365 | +      if ( $gregorian_month < $value ) { | |
| 366 | + break; | |
| 367 | + } | |
| 356 | 368 | |
| 357 | 369 | $gregorian_month -= $value; | 
| 358 | 370 | } | 
| @@ -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 | |
| @@ -25,7 +25,7 @@ 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 | 30 | $this->year = $year; | 
| 31 | 31 | |
| @@ -42,7 +42,7 @@ discard block | ||
| 42 | 42 | */ | 
| 43 | 43 |    public function gregorinLeapYear() { | 
| 44 | 44 | |
| 45 | - return ( ( ( $this->year % 4 ) == 0 ) && ( ( ( $this->year % 100 ) != 0 ) || ( ( $this->year % 400 ) == 0 ) ) ); | |
| 45 | + return ((($this->year % 4) == 0) && ((($this->year % 100) != 0) || (($this->year % 400) == 0))); | |
| 46 | 46 | |
| 47 | 47 | } | 
| 48 | 48 | |
| @@ -55,7 +55,7 @@ discard block | ||
| 55 | 55 | |
| 56 | 56 | $jalali_years = 0; | 
| 57 | 57 | |
| 58 | -    while ( $jalali_years < ( $this->year - 128 ) ) { | |
| 58 | +    while ($jalali_years < ($this->year - 128)) { | |
| 59 | 59 | |
| 60 | 60 | $jalali_years += 128; | 
| 61 | 61 | |
| @@ -66,13 +66,13 @@ discard block | ||
| 66 | 66 | |
| 67 | 67 | $this->result -= $jalali_years; | 
| 68 | 68 | |
| 69 | -    if ( $this->result >= 33 ) { | |
| 69 | +    if ($this->result >= 33) { | |
| 70 | 70 | |
| 71 | 71 | $this->result = $this->result % 33; | 
| 72 | 72 | |
| 73 | 73 | } | 
| 74 | 74 | |
| 75 | -    if ( ( $this->result == 28 ) || ( $this->result == 27 ) ) { | |
| 75 | +    if (($this->result == 28) || ($this->result == 27)) { | |
| 76 | 76 | |
| 77 | 77 | return $this->result; | 
| 78 | 78 | |
| @@ -83,13 +83,13 @@ discard block | ||
| 83 | 83 | |
| 84 | 84 | $this->result -= $jalali_years; | 
| 85 | 85 | |
| 86 | -    if ( $this->result >= 33 ) { | |
| 86 | +    if ($this->result >= 33) { | |
| 87 | 87 | |
| 88 | 88 | $this->result = $this->result % 33; | 
| 89 | 89 | |
| 90 | 90 | } | 
| 91 | 91 | |
| 92 | -    if ( ( ( $this->result % 4 ) == 0 ) && ( $this->result != 28 ) ) { | |
| 92 | +    if ((($this->result % 4) == 0) && ($this->result != 28)) { | |
| 93 | 93 | |
| 94 | 94 | return $this->result; | 
| 95 | 95 | |
| @@ -105,7 +105,7 @@ discard block | ||
| 105 | 105 | |
| 106 | 106 | $this->result = $this->year % 30; | 
| 107 | 107 | |
| 108 | -    if ( ( 2 == $this->result ) || ( 5 == $this->result ) || ( 7 == $this->result ) || ( 10 == $this->result ) || ( 13 == $this->result ) || ( 16 == $this->result ) || ( 18 == $this->result ) || ( 21 == $this->result ) || ( 24 == $this->year ) || ( 26 == $this->result ) || ( 29 == $this->result ) ) { | |
| 108 | +    if ((2 == $this->result) || (5 == $this->result) || (7 == $this->result) || (10 == $this->result) || (13 == $this->result) || (16 == $this->result) || (18 == $this->result) || (21 == $this->result) || (24 == $this->year) || (26 == $this->result) || (29 == $this->result)) { | |
| 109 | 109 | |
| 110 | 110 | return $this->result; | 
| 111 | 111 | |
| @@ -120,7 +120,7 @@ discard block | ||
| 120 | 120 | */ | 
| 121 | 121 |    public function get() { | 
| 122 | 122 | |
| 123 | -    switch ( $this->type ) { | |
| 123 | +    switch ($this->type) { | |
| 124 | 124 | |
| 125 | 125 | case 'gregorian': | 
| 126 | 126 | |
| @@ -40,21 +40,21 @@ | ||
| 40 | 40 | /** | 
| 41 | 41 | * Fetch translated file to config attribute | 
| 42 | 42 | */ | 
| 43 | -       self::$config = include('src/CalendarSettings/Jalali.php'); | |
| 43 | +        self::$config = include('src/CalendarSettings/Jalali.php'); | |
| 44 | 44 | |
| 45 | - /** | |
| 46 | - * Fetch translated expression to langTable attribute | |
| 47 | - */ | |
| 48 | -       self::$langTable = include('lang/' . $language . '/general.php'); | |
| 45 | + /** | |
| 46 | + * Fetch translated expression to langTable attribute | |
| 47 | + */ | |
| 48 | +        self::$langTable = include('lang/' . $language . '/general.php'); | |
| 49 | 49 | |
| 50 | -       foreach( self::$langTable as $key => $translate ){ | |
| 50 | +        foreach( self::$langTable as $key => $translate ){ | |
| 51 | 51 | |
| 52 | -         if(  self::$config[ $key ] ) { | |
| 52 | +          if(  self::$config[ $key ] ) { | |
| 53 | 53 | |
| 54 | - self::$config[ $key ] = $translate; | |
| 54 | + self::$config[ $key ] = $translate; | |
| 55 | 55 | |
| 56 | - } | |
| 57 | - } | |
| 56 | + } | |
| 57 | + } | |
| 58 | 58 | |
| 59 | 59 | } | 
| 60 | 60 | |