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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
<?php /** * WPSEO plugin file. * * @package WPSEO\Internals */
/** * Holder for SEO Rank information. */ class WPSEO_Rank {
/** * @var string */ const BAD = 'bad';
/** * @var string */ const OK = 'ok';
/** * @var string */ const GOOD = 'good';
/** * @var string */ const NO_FOCUS = 'na';
/** * @var string */ const NO_INDEX = 'noindex';
/** * All possible ranks. * * @var array */ protected static $ranks = array( self::BAD, self::OK, self::GOOD, self::NO_FOCUS, self::NO_INDEX, );
/** * Holds the translation from seo score slug to actual score range. * * @var array */ protected static $ranges = array( self::NO_FOCUS => array( 'start' => 0, 'end' => 0, ), self::BAD => array( 'start' => 1, 'end' => 40, ), self::OK => array( 'start' => 41, 'end' => 70, ), self::GOOD => array( 'start' => 71, 'end' => 100, ), );
/** * @var int */ protected $rank;
/** * @param int $rank The actual rank. */ public function __construct( $rank ) { if ( ! in_array( $rank, self::$ranks, true ) ) { $rank = self::BAD; }
$this->rank = $rank; }
/** * Returns the saved rank for this rank. * * @return string */ public function get_rank() { return $this->rank; }
/** * Returns a CSS class for this rank. * * @return string */ public function get_css_class() { $labels = array( self::NO_FOCUS => 'na', self::NO_INDEX => 'noindex', self::BAD => 'bad', self::OK => 'ok', self::GOOD => 'good', );
return $labels[ $this->rank ]; }
/** * Returns a label for this rank. * * @return string */ public function get_label() { $labels = array( self::NO_FOCUS => __( 'Not available', 'wordpress-seo' ), self::NO_INDEX => __( 'No index', 'wordpress-seo' ), self::BAD => __( 'Needs improvement', 'wordpress-seo' ), self::OK => __( 'OK', 'wordpress-seo' ), self::GOOD => __( 'Good', 'wordpress-seo' ), );
return $labels[ $this->rank ]; }
/** * Returns a label for use in a drop down. * * @return mixed */ public function get_drop_down_label() { $labels = array( self::NO_FOCUS => sprintf( /* translators: %s expands to the SEO score */ __( 'SEO: %s', 'wordpress-seo' ), __( 'No Focus Keyphrase', 'wordpress-seo' ) ), self::BAD => sprintf( /* translators: %s expands to the SEO score */ __( 'SEO: %s', 'wordpress-seo' ), __( 'Needs improvement', 'wordpress-seo' ) ), self::OK => sprintf( /* translators: %s expands to the SEO score */ __( 'SEO: %s', 'wordpress-seo' ), __( 'OK', 'wordpress-seo' ) ), self::GOOD => sprintf( /* translators: %s expands to the SEO score */ __( 'SEO: %s', 'wordpress-seo' ), __( 'Good', 'wordpress-seo' ) ), self::NO_INDEX => sprintf( /* translators: %s expands to the SEO score */ __( 'SEO: %s', 'wordpress-seo' ), __( 'Post Noindexed', 'wordpress-seo' ) ), );
return $labels[ $this->rank ]; }
/** * Gets the drop down labels for the readability score. * * @return string The readability rank label. */ public function get_drop_down_readability_labels() { $labels = array( self::BAD => sprintf( /* translators: %s expands to the readability score */ __( 'Readability: %s', 'wordpress-seo' ), __( 'Needs improvement', 'wordpress-seo' ) ), self::OK => sprintf( /* translators: %s expands to the readability score */ __( 'Readability: %s', 'wordpress-seo' ), __( 'OK', 'wordpress-seo' ) ), self::GOOD => sprintf( /* translators: %s expands to the readability score */ __( 'Readability: %s', 'wordpress-seo' ), __( 'Good', 'wordpress-seo' ) ), );
return $labels[ $this->rank ]; }
/** * @return int The starting score for this rank. */ public function get_starting_score() { // No index does not have a starting score. if ( self::NO_INDEX === $this->rank ) { return -1; }
return self::$ranges[ $this->rank ]['start']; }
/** * @return int The end score for this rank. */ public function get_end_score() { // No index does not have an end score. if ( self::NO_INDEX === $this->rank ) { return -1; }
return self::$ranges[ $this->rank ]['end']; }
/** * Returns a rank for a specific numeric score. * * @param int $score The score to determine a rank for. * * @return self */ public static function from_numeric_score( $score ) { // Set up the default value. $rank = new self( self::BAD );
foreach ( self::$ranges as $rank_index => $range ) { if ( $range['start'] <= $score && $score <= $range['end'] ) { $rank = new self( $rank_index ); break; } }
return $rank; }
/** * Returns a list of all possible SEO Ranks. * * @return WPSEO_Rank[] */ public static function get_all_ranks() { return array_map( array( 'WPSEO_Rank', 'create_rank' ), self::$ranks ); }
/** * Returns a list of all possible Readability Ranks. * * @return WPSEO_Rank[] */ public static function get_all_readability_ranks() { return array_map( array( 'WPSEO_Rank', 'create_rank' ), array( self::BAD, self::OK, self::GOOD ) ); }
/** * Converts a numeric rank into a WPSEO_Rank object, for use in functional array_* functions. * * @param string $rank SEO Rank. * * @return WPSEO_Rank */ private static function create_rank( $rank ) { return new self( $rank ); } }
|