<?php
namespace LaStudioKitThemeBuilder\Modules\ThemeBuilder\Conditions;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class Search extends Condition_Base {

	public static function get_type() {
		return 'archive';
	}

	public static function get_priority() {
		return 70;
	}

	public function get_name() {
		return 'search';
	}

	public function get_label() {
		return __( 'Search Results', 'lastudio-kit' );
	}

	public function check( $args ) {
		return is_search() && (!isset($_GET['post_type']) || ( 'product' === $_GET['post_type'] ));
	}
}
