| 1 | <?php |
||
| 7 | class SearchTextDataType extends AbstractDataType |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Return an array of available filter methods |
||
| 11 | * |
||
| 12 | * @return array |
||
| 13 | */ |
||
| 14 | public function getAvailableFilterMethods() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Return the identifier of the default sort method |
||
| 24 | * |
||
| 25 | * @return int |
||
| 26 | */ |
||
| 27 | public function getDefaultFilterMethod() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Return the name of the type, unique. |
||
| 34 | * |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | public function getName() |
||
| 41 | } |
||
| 42 |