Files
thetool/application/Preorderstatus/Preorderstatus.php
2022-12-06 12:43:42 +01:00

16 lines
242 B
PHP

<?php
class Preorderstatus extends mfBaseModel {
public function getApiArray() {
if(!$this->id) {
return false;
}
$a = [];
$a['code'] = (int)$this->code;
$a['text'] = $this->name;
return $a;
}
}