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