mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-22 14:56:11 +01:00
Import price info
This commit is contained in:
parent
93545bd171
commit
c95a84d52d
2 changed files with 4 additions and 1 deletions
|
@ -493,6 +493,9 @@ class DestinationDataImportService {
|
||||||
if ($text['rel'] == "teaser" && $text['type'] == "text/plain") {
|
if ($text['rel'] == "teaser" && $text['type'] == "text/plain") {
|
||||||
$this->tmpCurrentEvent->setTeaser($text['value']);
|
$this->tmpCurrentEvent->setTeaser($text['value']);
|
||||||
}
|
}
|
||||||
|
if ($text['rel'] == "PRICE_INFO" && $text['type'] == "text/plain") {
|
||||||
|
$this->tmpCurrentEvent->setPriceInfo($text['value']);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
<p><b>Preis:</b><br>
|
<p><b>Preis:</b><br>
|
||||||
<f:if condition="{date.event.priceInfo}">
|
<f:if condition="{date.event.priceInfo}">
|
||||||
<f:then>
|
<f:then>
|
||||||
{date.event.priceInfo}
|
<f:format.nl2br>{date.event.priceInfo}</f:format.nl2br>
|
||||||
</f:then>
|
</f:then>
|
||||||
<f:else>
|
<f:else>
|
||||||
Keine Information
|
Keine Information
|
||||||
|
|
Loading…
Reference in a new issue