| 1 | <?php |
||
| 7 | class NumberDataType extends AbstractDataType |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Return an array of available sorting methods |
||
| 11 | * |
||
| 12 | * @return array |
||
| 13 | */ |
||
| 14 | public function getAvailableFilterMethods() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Return the identifier of the default sort method |
||
| 30 | * |
||
| 31 | * @return int |
||
| 32 | */ |
||
| 33 | public function getDefaultFilterMethod() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Return the name of the type, unique. |
||
| 40 | * |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | public function getName() |
||
| 47 | } |
||
| 48 |