22 lines
447 B
PHP
22 lines
447 B
PHP
<?php
|
|
|
|
class CustomResponse extends DataStore {
|
|
const TABLE = 'customresponse';
|
|
|
|
public static function getProps() {
|
|
return [
|
|
'name',
|
|
'language',
|
|
'content'
|
|
];
|
|
}
|
|
|
|
public function toArray() {
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->name,
|
|
'language' => $this->language,
|
|
'content' => $this->content,
|
|
];
|
|
}
|
|
} |