forked from wp-graphql/wp-graphql-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 1
/
class-inflect.php
190 lines (174 loc) · 5.01 KB
/
class-inflect.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
/**
* Static Inflector class
*
* Author: T. Brian Jones
* Author URI: https://github.com/tbrianjones
*
* @author @tbrianjones
* @link https://gist.github.com/tbrianjones/ba0460cc1d55f357e00b
* @package WPGraphQL\Extensions\WooCommerce
* @since 0.0.4
*/
/**
* Class Inflect
*/
class Inflect {
/**
* Stores plural suffixes.
*
* @var array $plural
*/
private static $plural = array(
'/(quiz)$/i' => '$1zes',
'/^(ox)$/i' => '$1en',
'/([m|l])ouse$/i' => '$1ice',
'/(matr|vert|ind)ix|ex$/i' => '$1ices',
'/(x|ch|ss|sh)$/i' => '$1es',
'/([^aeiouy]|qu)y$/i' => '$1ies',
'/(hive)$/i' => '$1s',
'/(?:([^f])fe|([lr])f)$/i' => '$1$2ves',
'/(shea|lea|loa|thie)f$/i' => '$1ves',
'/sis$/i' => 'ses',
'/([ti])um$/i' => '$1a',
'/(tomat|potat|ech|her|vet)o$/i' => '$1oes',
'/(bu)s$/i' => '$1ses',
'/(alias)$/i' => '$1es',
'/(octop)us$/i' => '$1i',
'/(ax|test)is$/i' => '$1es',
'/(us)$/i' => '$1es',
'/s$/i' => 's',
'/$/' => 's',
);
/**
* Stores singular suffixes
*
* @var array $singular
*/
private static $singular = array(
'/(quiz)zes$/i' => '$1',
'/(matr)ices$/i' => '$1ix',
'/(vert|ind)ices$/i' => '$1ex',
'/^(ox)en$/i' => '$1',
'/(alias)es$/i' => '$1',
'/(octop|vir)i$/i' => '$1us',
'/(cris|ax|test)es$/i' => '$1is',
'/(shoe)s$/i' => '$1',
'/(o)es$/i' => '$1',
'/(bus)es$/i' => '$1',
'/([m|l])ice$/i' => '$1ouse',
'/(x|ch|ss|sh)es$/i' => '$1',
'/(m)ovies$/i' => '$1ovie',
'/(s)eries$/i' => '$1eries',
'/([^aeiouy]|qu)ies$/i' => '$1y',
'/([lr])ves$/i' => '$1f',
'/(tive)s$/i' => '$1',
'/(hive)s$/i' => '$1',
'/(li|wi|kni)ves$/i' => '$1fe',
'/(shea|loa|lea|thie)ves$/i' => '$1f',
'/(^analy)ses$/i' => '$1sis',
'/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i' => '$1$2sis',
'/([ti])a$/i' => '$1um',
'/(n)ews$/i' => '$1ews',
'/(h|bl)ouses$/i' => '$1ouse',
'/(corpse)s$/i' => '$1',
'/(us)es$/i' => '$1',
'/s$/i' => '',
);
/**
* Stores irregular words
*
* @var array $irregular
*/
private static $irregular = array(
'move' => 'moves',
'foot' => 'feet',
'goose' => 'geese',
'sex' => 'sexes',
'child' => 'children',
'man' => 'men',
'tooth' => 'teeth',
'person' => 'people',
'valve' => 'valves',
);
/**
* Stores words without plural tenses
*
* @var array $uncountable
*/
private static $uncountable = array(
'sheep',
'fish',
'deer',
'series',
'species',
'money',
'rice',
'information',
'equipment',
);
/**
* Return plural tense of provide string
*
* @param string $string - word to be pluralized.
* @return string
*/
public static function pluralize( $string ) {
// save some time in the case that singular and plural are the same.
if ( in_array( strtolower( $string ), self::$uncountable, true ) ) {
return $string;
}
// check for irregular singular forms.
foreach ( self::$irregular as $pattern => $result ) {
$pattern = '/' . $pattern . '$/i';
if ( preg_match( $pattern, $string ) ) {
return preg_replace( $pattern, $result, $string );
}
}
// check for matches using regular expressions.
foreach ( self::$plural as $pattern => $result ) {
if ( preg_match( $pattern, $string ) ) {
return preg_replace( $pattern, $result, $string );
}
}
return $string;
}
/**
* Return singular tense of provided string
*
* @param string $string String to be singularized.
* @return string
*/
public static function singularize( $string ) {
// save some time in the case that singular and plural are the same.
if ( in_array( strtolower( $string ), self::$uncountable, true ) ) {
return $string;
}
// check for irregular plural forms.
foreach ( self::$irregular as $result => $pattern ) {
$pattern = '/' . $pattern . '$/i';
if ( preg_match( $pattern, $string ) ) {
return preg_replace( $pattern, $result, $string );
}
}
// check for matches using regular expressions.
foreach ( self::$singular as $pattern => $result ) {
if ( preg_match( $pattern, $string ) ) {
return preg_replace( $pattern, $result, $string );
}
}
return $string;
}
/**
* Return plural tense if provided count is greater than 1
*
* @param int $count Count to be evaluated.
* @param string $string String potentially pluralized.
*/
public static function pluralize_if( $count, $string ) {
if ( 1 === $count ) {
return '1 $string';
}
return $count . ' ' . self::pluralize( $string );
}
}