Moin Moin,
ist zufällig ein schlichtes Shop System geplant?
das würde mir persönlich noch fehlen.
Gruß
Hier kann eine Notiz zum Merk-Eintrag hinzugefügt werden (optional)
Geschlossen |
1 | + Zeile 103 : `size` VARCHAR(250) NOT NULL, |
1 2 | + Zeile 46 : $orderModel->setSize($orderRow['size']); + Zeile 85 : 'size' => $order->getSize(), |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | + Zeile 88 - 93 : /** * The size of the order. * * @var integer */ protected $size; + Zeile 348 - 369 : /** * Gets the size of the order. * * @return integer */ public function getSize() { return $this->size; } /** * Sets the size of the order. * * @param integer $size * @return this */ public function setSize($size) { $this->size = (int)$size; return $this; } |
1 | + Zeile 198 : 'size' => 'Grösse', |
1 | + Zeile 198 : 'size' => 'Size', |
1 2 3 | + Zeile 70 : <th><?=$this->getTrans('size') ?><br /> </th> + Zeile 89 : $itemSize = $orderItem["size"]; + Zeile 120 : <td><?=$itemSize ?></td> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | + Zeile 58 : <th scope="col" width="16%" class="text-center"><?=$this->getTrans('size') ?><br /> </th> + Zeile 123 - 136 <td> <select class="form-control" id="size" name="size"> <option>Wähle eine Grösse</option> <option>XS</option> <option>S</option> <option>M</option> <option>L</option> <option>XL</option> <option>XXL</option> <option>3XL</option> <option>4XL</option> </select> </td> |
Geschlossen | ||
![]() |
Zurück zu Kritik und Verbesserungen |