Merge pull request #35 from Programvareverkstedet/2023events
This commit is contained in:
commit
847fe67534
|
@ -27,8 +27,8 @@ use \pvv\side\Agenda;
|
||||||
$agenda = new \pvv\side\Agenda([
|
$agenda = new \pvv\side\Agenda([
|
||||||
// new \pvv\side\social\NerdepitsaActivity,
|
// new \pvv\side\social\NerdepitsaActivity,
|
||||||
// new \pvv\side\social\AnimekveldActivity,
|
// new \pvv\side\social\AnimekveldActivity,
|
||||||
// new \pvv\side\social\HackekveldActivity,
|
new \pvv\side\social\HackekveldActivity,
|
||||||
// new \pvv\side\social\BrettspillActivity,
|
new \pvv\side\social\BrettspillActivity,
|
||||||
new \pvv\side\social\DriftkveldActivity,
|
new \pvv\side\social\DriftkveldActivity,
|
||||||
new \pvv\side\DBActivity($pdo),
|
new \pvv\side\DBActivity($pdo),
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -11,9 +11,9 @@ class BrettspillActivity implements Activity {
|
||||||
if ($date->format('H') > 17 || $date->format('H') == 16 && $date->format('i') > 15)
|
if ($date->format('H') > 17 || $date->format('H') == 16 && $date->format('i') > 15)
|
||||||
return $this->nextDate($date->add(new DateInterval('P1D'))->setTime(16, 15, 0));
|
return $this->nextDate($date->add(new DateInterval('P1D'))->setTime(16, 15, 0));
|
||||||
$date = $date->setTime(16, 15, 0);
|
$date = $date->setTime(16, 15, 0);
|
||||||
if ($date->format('N') != 6)
|
if ($date->format('N') != 7)
|
||||||
return $this->nextDate($date->add(new DateInterval('P1D')));
|
return $this->nextDate($date->add(new DateInterval('P1D')));
|
||||||
if ($date->format('W') % 4 - 3)
|
if ($date->format('W') % 2)
|
||||||
return $this->nextDate($date->add(new DateInterval('P7D')));
|
return $this->nextDate($date->add(new DateInterval('P7D')));
|
||||||
return $date;
|
return $date;
|
||||||
}
|
}
|
||||||
|
@ -22,10 +22,11 @@ class BrettspillActivity implements Activity {
|
||||||
if ($date->format('H') < 16 || $date->format('H') == 17 && $date->format('i') < 15)
|
if ($date->format('H') < 16 || $date->format('H') == 17 && $date->format('i') < 15)
|
||||||
return $this->prevDate($date->sub(new DateInterval('P1D'))->setTime(16, 15, 0));
|
return $this->prevDate($date->sub(new DateInterval('P1D'))->setTime(16, 15, 0));
|
||||||
$date = $date->setTime(16, 15, 0);
|
$date = $date->setTime(16, 15, 0);
|
||||||
if ($date->format('N') != 6)
|
if ($date->format('N') != 7)
|
||||||
return $this->prevDate($date->sub(new DateInterval('P1D')));
|
return $this->prevDate($date->sub(new DateInterval('P1D')));
|
||||||
if ($date->format('W') % 4 - 3)
|
if ($date->format('W') % 2)
|
||||||
return $this->nextDate($date->add(new DateInterval('P7D')));
|
return $this->prevDate($date->sub(new DateInterval('P7D')));
|
||||||
|
|
||||||
return $date;
|
return $date;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ class HackekveldActivity implements Activity {
|
||||||
$date = $date->setTime(16, 15, 0);
|
$date = $date->setTime(16, 15, 0);
|
||||||
if ($date->format('N') != 6)
|
if ($date->format('N') != 6)
|
||||||
return $this->nextDate($date->add(new DateInterval('P1D')));
|
return $this->nextDate($date->add(new DateInterval('P1D')));
|
||||||
if ($date->format('W') % 4 - 1)
|
if ($date->format('W') % 2 - 1)
|
||||||
return $this->nextDate($date->add(new DateInterval('P7D')));
|
return $this->nextDate($date->add(new DateInterval('P7D')));
|
||||||
return $date;
|
return $date;
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ class HackekveldActivity implements Activity {
|
||||||
$date = $date->setTime(18, 15, 0);
|
$date = $date->setTime(18, 15, 0);
|
||||||
if ($date->format('N') != 6)
|
if ($date->format('N') != 6)
|
||||||
return $this->prevDate($date->sub(new DateInterval('P1D')));
|
return $this->prevDate($date->sub(new DateInterval('P1D')));
|
||||||
if ($date->format('W') % 4 - 1)
|
if ($date->format('W') % 2 - 1)
|
||||||
return $this->prevDate($date->sub(new DateInterval('P7D')));
|
return $this->prevDate($date->sub(new DateInterval('P7D')));
|
||||||
return $date;
|
return $date;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue