Files
thetool/application/Preorderstatus/Preorderstatus.php
T

17 lines
260 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;
$a['flags'] = [];
return $a;
}
}