PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Notice: ob_end_clean(): Failed to delete buffer. No buffer to delete in /home/telusvwg/public_html/da754d/index.php on line 8
$#$#$#

Dir : /home/telusvwg/alwatnitraders.com/wp-content/themes/woodmart/inc/widgets/
Server: Linux premium279.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
IP: 66.29.132.192
Choose File :

Url:
Dir : /home/telusvwg/alwatnitraders.com/wp-content/themes/woodmart/inc/widgets/class-widget-search.php

<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
/**
 * AJAX search widget
 *
 * @package woodmart§
 */

if ( ! defined( 'WOODMART_THEME_DIR' ) ) {
	exit( 'No direct script access allowed' );
}

/**
 * Register AJAX search widget.
 */
class WOODMART_Widget_Search extends WPH_Widget {

	/**
	 * Constructor.
	 */
	public function __construct() {
		if ( ! woodmart_woocommerce_installed() ) {
			return;
		}

		$args = array(
			'label'       => esc_html__( 'WOODMART AJAX Search', 'woodmart' ),
			'description' => esc_html__( 'Search form by products with AJAX', 'woodmart' ),
			'slug'        => 'woodmart-ajax-search',
		);

		$args['fields'] = array(
			array(
				'id'   => 'title',
				'type' => 'text',
				'std'  => esc_html__( 'Search products', 'woodmart' ),
				'name' => esc_html__( 'Title', 'woodmart' ),
			),
			array(
				'id'     => 'post_type',
				'type'   => 'dropdown',
				'std'    => 'product',
				'name'   => esc_html__( 'Search post type', 'woodmart' ),
				'fields' => array(
					esc_html__( 'Product', 'woodmart' )   => 'product',
					esc_html__( 'Post', 'woodmart' )      => 'post',
					esc_html__( 'Portfolio', 'woodmart' ) => 'portfolio',
				),
			),
			array(
				'id'   => 'number',
				'type' => 'number',
				'std'  => 4,
				'name' => esc_html__( 'Number of products to show', 'woodmart' ),
			),
			array(
				'id'   => 'price',
				'type' => 'checkbox',
				'std'  => 1,
				'name' => esc_html__( 'Show price', 'woodmart' ),
			),
			array(
				'id'   => 'thumbnail',
				'type' => 'checkbox',
				'std'  => 1,
				'name' => esc_html__( 'Show thumbnail', 'woodmart' ),
			),
			array(
				'id'   => 'categories',
				'type' => 'checkbox',
				'std'  => 1,
				'name' => esc_html__( 'Show categories', 'woodmart' ),
			),
		);

		$this->create_widget( $args );
	}

	/**
	 * Render widget.
	 *
	 * @param array $args Widget arguments.
	 * @param array $instance Widget instance.
	 */
	public function widget( $args, $instance ) {
		extract( $args ); // phpcs:ignore WordPress.PHP.DontExtract.extract_extract

		echo wp_kses_post( $before_widget );

		$number     = empty( $instance['number'] ) ? 3 : absint( $instance['number'] );
		$thumbnail  = empty( $instance['thumbnail'] ) ? 0 : absint( $instance['thumbnail'] );
		$price      = empty( $instance['price'] ) ? 0 : absint( $instance['price'] );
		$post_type  = empty( $instance['post_type'] ) ? 'product' : $instance['post_type'];
		$categories = true;

		if ( isset( $instance['categories'] ) ) {
			$categories = empty( $instance['categories'] ) ? 0 : absint( $instance['price'] );
		}

		$title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance );

		if ( $title ) {
			echo wp_kses_post( $before_title ) . $title . wp_kses_post( $after_title ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		}

		woodmart_search_form(
			array(
				'ajax'            => true,
				'count'           => $number,
				'thumbnail'       => $thumbnail,
				'show_categories' => $categories,
				'post_type'       => $post_type,
				'price'           => $price,
			)
		);

		echo wp_kses_post( $after_widget );
	}

	/**
	 * Form.
	 *
	 * @param array $instance Instance.
	 */
	public function form( $instance ) { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod
		parent::form( $instance );
	}
}