17 lines
299 B
PHP
17 lines
299 B
PHP
|
<?php
|
||
|
class Ban extends DataStore {
|
||
|
const TABLE = 'ban';
|
||
|
|
||
|
public static function getProps() {
|
||
|
return array (
|
||
|
'email'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function getDefaultProps() {
|
||
|
return array();
|
||
|
}
|
||
|
public function toArray() {
|
||
|
return $this->email;
|
||
|
}
|
||
|
}
|