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 |
+ Zeile 103 : `size` VARCHAR(250) NOT NULL,
+ Zeile 46 : $orderModel->setSize($orderRow['size']); + Zeile 85 : 'size' => $order->getSize(),
+ 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; }
+ Zeile 198 : 'size' => 'Grösse',
+ Zeile 198 : 'size' => 'Size',
+ Zeile 70 : <th><?=$this->getTrans('size') ?><br /> </th> + Zeile 89 : $itemSize = $orderItem["size"]; + Zeile 120 : <td><?=$itemSize ?></td>
+ 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 |