Init commit

This commit is contained in:
2026-04-06 14:15:32 +02:00
parent ce7e5a71b5
commit 874d85e1d8
45 changed files with 9652 additions and 0 deletions

19
model/CatalogueModel.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
class CatalogueModel {
protected $content = array();
private function __construct($content = array()) {
if (sizeof($content) > 0) {
$this->fillCatalogue();
}
private function fillCatalogue() {
}
}
}

21
model/ProductModel.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
class ProductModel {
//protected $id;
protected $name;
protected $price;
protected $pricewTax;
protected $pricePerPiece;
protected $sizes;
/*
* @product array()
*/
public function __construct($product) {
$this->sizes = $product[0];
$this->sizes = $product[];
$this->name=$product[];
}
}