first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
class WPML_String_Functions {
public static function is_css_color( $string ) {
return (bool) preg_match( '/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/im', $string );
}
public static function is_css_length( $string ) {
$parts = explode( ' ', $string );
foreach ( $parts as $part ) {
if ( ! (bool) preg_match( '/^[+-]?[0-9]+.?([0-9]+)?(px|em|ex|ch|rem|vw|vh|vmin|vmax|%|in|cm|mm|pt|pc)$/im', $part ) &&
'0' !== $part ) {
return false;
}
}
return true;
}
public static function is_numeric( $string ) {
return (bool) is_numeric( $string );
}
public static function is_not_translatable( $string ) {
return self::is_css_color( $string ) ||
self::is_css_length( $string ) ||
self::is_numeric( $string );
}
}