Created
September 27, 2018 13:03
-
-
Save nielsnuebel/96c6d6f607e36770a7075e73e6e2ad47 to your computer and use it in GitHub Desktop.
KickTabelleToni Artikel Override
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$params = $this->item->params; | |
$fahrzeugdaten = $params->get('fahrzeugdaten', 0); | |
if ($fahrzeugdaten) | |
{ | |
foreach ($fahrzeugdaten as $fahrzeugdetail) | |
{ | |
$fahrzeugdetail = (object) $fahrzeugdetail; | |
echo $fahrzeugdetail->rohrlaenge; //usw. | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment