showing disabled products in existing orders if needed

This commit is contained in:
Frank Schubert
2023-02-27 19:17:50 +01:00
parent 4be8e91508
commit 3d679732a8
2 changed files with 23 additions and 3 deletions

View File

@@ -36,6 +36,13 @@ class mfLayout {
public function set($name, $value) {
$this->tvars[$name] = $value;
}
public function get($name) {
if(array_key_exists($name, $this->tvars)) {
return $this->tvars[$name];
}
return null;
}
public function setPackage($package) {
$this->package = $package;