403Webshell
Server IP : 172.67.158.161  /  Your IP : 18.191.181.219
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/giankuin/khowordpress.com/wp-content/plugins/woocommerce/src/Internal/ProductImage/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/khowordpress.com/wp-content/plugins/woocommerce/src/Internal/ProductImage/MatchImageBySKU.php
<?php
/**
 * MatchImageBySKU class file.
 */

namespace Automattic\WooCommerce\Internal\ProductImage;

use Automattic\WooCommerce\Internal\Traits\AccessiblePrivateMethods;

defined( 'ABSPATH' ) || exit;

/**
 * Class for the product image matching by SKU.
 */
class MatchImageBySKU {

	use AccessiblePrivateMethods;

	/**
	 * The name of the setting for this feature.
	 *
	 * @var string
	 */
	private $setting_name = 'woocommerce_product_match_featured_image_by_sku';

	/**
	 * MatchImageBySKU constructor.
	 */
	public function __construct() {
		$this->init_hooks();
	}

	/**
	 * Initialize the hooks used by the class.
	 */
	private function init_hooks() {
		self::add_filter( 'woocommerce_get_settings_products', array( $this, 'add_product_image_sku_setting' ), 110, 2 );
	}

	/**
	 * Is this feature enabled.
	 *
	 * @since 8.3.0
	 * @return bool
	 */
	public function is_enabled() {
		return wc_string_to_bool( get_option( $this->setting_name ) );
	}

	/**
	 * Handler for 'woocommerce_get_settings_products', adds the settings related to the product image SKU matching table.
	 *
	 * @param array  $settings Original settings configuration array.
	 * @param string $section_id Settings section identifier.
	 * @return array New settings configuration array.
	 */
	private function add_product_image_sku_setting( array $settings, string $section_id ): array {
		if ( 'advanced' !== $section_id ) {
			return $settings;
		}

		$settings[] = array(
			'title' => __( 'Product image matching by SKU', 'woocommerce' ),
			'type'  => 'title',
		);

		$settings[] = array(
			'title'         => __( 'Match images', 'woocommerce' ),
			'desc'          => __( 'Set product featured image when uploaded image file name matches product SKU.', 'woocommerce' ),
			'id'            => $this->setting_name,
			'default'       => 'no',
			'type'          => 'checkbox',
			'checkboxgroup' => 'start',
		);

		$settings[] = array( 'type' => 'sectionend' );

		return $settings;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit