| 1 | <?php |
||
| 12 | abstract class En_GBLocalise |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Returns the potential suffixes for a specific number of items |
||
| 16 | * |
||
| 17 | * @param integer $count The number of items. |
||
| 18 | * |
||
| 19 | * @return array An array of potential suffixes. |
||
| 20 | * |
||
| 21 | * @since 1.0 |
||
| 22 | */ |
||
| 23 | public static function getPluralSuffixes($count) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Returns the ignored search words |
||
| 43 | * |
||
| 44 | * @return array An array of ignored search words. |
||
| 45 | * |
||
| 46 | * @since 1.0 |
||
| 47 | */ |
||
| 48 | public static function getIgnoredSearchWords() |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Returns the lower length limit of search words |
||
| 60 | * |
||
| 61 | * @return integer The lower length limit of search words. |
||
| 62 | * |
||
| 63 | * @since 1.0 |
||
| 64 | */ |
||
| 65 | public static function getLowerLimitSearchWord() |
||
| 69 | |||
| 70 | /** |
||
| 71 | * Returns the upper length limit of search words |
||
| 72 | * |
||
| 73 | * @return integer The upper length limit of search words. |
||
| 74 | * |
||
| 75 | * @since 1.0 |
||
| 76 | */ |
||
| 77 | public static function getUpperLimitSearchWord() |
||
| 81 | |||
| 82 | /** |
||
| 83 | * Returns the number of chars to display when searching |
||
| 84 | * |
||
| 85 | * @return integer The number of chars to display when searching. |
||
| 86 | * |
||
| 87 | * @since 1.0 |
||
| 88 | */ |
||
| 89 | public static function getSearchDisplayedCharactersNumber() |
||
| 93 | } |
||
| 94 |