17 lines
260 B
PHP
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;
|
|
}
|
|
} |