Remove url on simpleevent
This commit is contained in:
parent
c8ac8f7297
commit
473cd000d0
|
@ -41,7 +41,7 @@ class SimpleEvent extends Event {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getURL() {
|
public function getURL() {
|
||||||
return '/';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getImageURL() {
|
public function getImageURL() {
|
||||||
|
|
|
@ -54,7 +54,11 @@ foreach($events as $event) {
|
||||||
<?php if (\pvv\side\Agenda::isToday($event->getStart())) { ?><strong><?php } ?>
|
<?php if (\pvv\side\Agenda::isToday($event->getStart())) { ?><strong><?php } ?>
|
||||||
<em><?= $event->getRelativeDate() ?></em>
|
<em><?= $event->getRelativeDate() ?></em>
|
||||||
<?php if (\pvv\side\Agenda::isToday($event->getStart())) { ?></strong><?php } ?>
|
<?php if (\pvv\side\Agenda::isToday($event->getStart())) { ?></strong><?php } ?>
|
||||||
|
<?php if ($event->getURL()) { ?>
|
||||||
<a href="<?= $event->getURL() ?>"><?= $event->getName() ?></a>
|
<a href="<?= $event->getURL() ?>"><?= $event->getName() ?></a>
|
||||||
|
<?php } else { ?>
|
||||||
|
<?= $event->getName() ?>
|
||||||
|
<?php } ?>
|
||||||
</h2>
|
</h2>
|
||||||
<ul class="subtext">
|
<ul class="subtext">
|
||||||
<li>Tid: <strong><?= Agenda::getFormattedDate($event->getStart()) ?></strong>
|
<li>Tid: <strong><?= Agenda::getFormattedDate($event->getStart()) ?></strong>
|
||||||
|
|
Loading…
Reference in New Issue