PluginProbe
Hostinger Tools / 3.0.0
Hostinger Tools v3.0.0
3.0.77 3.0.76 3.0.75 3.0.74 3.0.73 3.0.72 3.0.71 3.0.70 3.0.69 3.0.68 3.0.67 3.0.66 1.8.1 1.8.2 1.8.3 1.9.1 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.4 All 108 releases
← All changes | includes/Helper.php +15 -0 2.2.43.0.0 View file →
@@ -248,7 +248,22 @@
248 248
249 249 return empty( array_diff( $required_completed_actions, $completed_actions ) );
250 250 }
251 251
252 + /**
253 + * @return void
254 + */
255 + public static function generate_bypass_code( $length ) {
256 + $characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
257 + $code = '';
258 + $maxIndex = strlen($characters) - 1;
259 +
260 + for ($i = 0; $i < $length; $i++) {
261 + $randomIndex = mt_rand(0, $maxIndex);
262 + $code .= $characters[$randomIndex];
263 + }
264 +
265 + return $code;
266 + }
252 267 }
253 268
254 269 $hostinger_helper = new Helper();