arguments
3 years ago
arrayable
3 years ago
filters
3 years ago
http
3 years ago
macro-constants
3 years ago
post
3 years ago
repository
3 years ago
resources
3 years ago
security
3 years ago
theme
3 years ago
attributes-trait.php
3 years ago
base-attributes-trait.php
3 years ago
builder-helper.php
3 years ago
compatibility.php
3 years ago
date-tools.php
3 years ago
gallery.php
3 years ago
get-icon-trait.php
3 years ago
get-template-trait.php
3 years ago
html-attributes-trait.php
3 years ago
instance-trait.php
3 years ago
macros-parser.php
3 years ago
regexp-tools.php
3 years ago
tools.php
3 years ago
regexp-tools.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Classes; |
| 5 | |
| 6 | |
| 7 | class Regexp_Tools { |
| 8 | |
| 9 | public static function has_macro( $value ): bool { |
| 10 | if ( ! is_scalar( $value ) || ! is_string( $value ) ) { |
| 11 | return false; |
| 12 | } |
| 13 | |
| 14 | return preg_match( '/%([\w\-]+::)?(.*?)%/', urldecode( (string) $value ) ); |
| 15 | } |
| 16 | |
| 17 | } |