| 1 |
<?php |
| 2 |
|
| 3 |
namespace Elementor\Core\Utils\Promotions; |
| 4 |
|
| 5 |
if ( ! defined( 'ABSPATH' ) ) { |
| 6 |
exit; // Exit if accessed directly. |
| 7 |
} |
| 8 |
|
| 9 |
class Validate_Promotion { |
| 10 |
|
| 11 |
public static function domain_is_on_elementor_dot_com( $url ): bool { |
| 12 |
$domain = wp_parse_url( $url, PHP_URL_HOST ); |
| 13 |
return isset( $domain ) && str_contains( $domain, 'elementor.com' ); |
| 14 |
} |
| 15 |
} |
| 16 |
|