| 1 | <?php |
||
| 7 | class DateDataType extends AbstractDataType |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Return an array of available filter methods |
||
| 11 | * |
||
| 12 | * @return array |
||
| 13 | */ |
||
| 14 | public function getAvailableFilterMethods() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Return the identifier of the default sort method |
||
| 28 | * |
||
| 29 | * @return int |
||
| 30 | */ |
||
| 31 | public function getDefaultFilterMethod() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Return the name of the type, unique. |
||
| 38 | * |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | public function getName() |
||
| 45 | } |
||
| 46 |