| 1 | <?php |
||
| 6 | class PercentDataType extends AbstractDataType |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * Return the identifier of the default sort method. |
||
| 10 | * |
||
| 11 | * @return int |
||
| 12 | */ |
||
| 13 | public function getDefaultFilterMethod() |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Return the name of the type, unique. |
||
| 20 | * |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | public function getName() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Return an array of available sorting methods. |
||
| 30 | * |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | public function getAvailableFilterMethods() |
||
| 44 | } |
||
| 45 |