Skip to content

Instantly share code, notes, and snippets.

@nielsnuebel
Created September 27, 2018 13:03
Show Gist options
  • Save nielsnuebel/96c6d6f607e36770a7075e73e6e2ad47 to your computer and use it in GitHub Desktop.
Save nielsnuebel/96c6d6f607e36770a7075e73e6e2ad47 to your computer and use it in GitHub Desktop.
KickTabelleToni Artikel Override
<?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