2016-07-20 06:38:34 +02:00
|
|
|
<?php
|
|
|
|
class RecoverPassword extends DataStore {
|
|
|
|
const TABLE = 'recoverpassword';
|
2018-07-20 23:21:18 +02:00
|
|
|
|
2016-07-20 06:38:34 +02:00
|
|
|
public static function getProps() {
|
|
|
|
return array (
|
|
|
|
'email',
|
2018-07-20 23:21:18 +02:00
|
|
|
'token',
|
|
|
|
'staff'
|
2016-07-20 06:38:34 +02:00
|
|
|
);
|
|
|
|
}
|
2018-07-20 23:21:18 +02:00
|
|
|
|
2016-07-20 06:38:34 +02:00
|
|
|
public function getDefaultProps() {
|
|
|
|
return array();
|
|
|
|
}
|
2018-07-20 23:21:18 +02:00
|
|
|
}
|