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
/
includes
/
templates
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
class-base.php
7.84 KB
-rw-r--r--
2026-05-29 14:44
class-blank.php
1.66 KB
-rw-r--r--
2026-02-24 15:21
class-simple-contact-form.php
2.39 KB
-rw-r--r--
2026-02-24 15:21
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
class-blank.php
<?php // phpcs:disable Generic.Commenting.DocComment.MissingShort /** @noinspection AutoloadingIssuesInspection */ /** @noinspection PhpIllegalPsrClassPathInspection */ // phpcs:enable Generic.Commenting.DocComment.MissingShort if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Blank form template. * * @since 1.0.0 */ class WPForms_Template_Blank extends WPForms_Template { /** * Template slug. * * @since 1.9.2 */ const SLUG = 'blank'; /** * Primary class constructor. * * @since 1.0.0 */ public function init() { $this->priority = 1; $this->name = esc_html__( 'Blank Form', 'wpforms-lite' ); $this->slug = 'blank'; $this->source = 'wpforms-core'; $this->categories = 'all'; $this->description = esc_html__( 'The blank form allows you to create any type of form using our drag & drop builder.', 'wpforms-lite' ); $this->includes = ''; $this->icon = ''; $this->modal = ''; $this->core = true; $this->data = self::get_data(); } /** * Get template data. * * @since 1.9.2 * * @return array */ public static function get_data(): array { return [ 'field_id' => '1', 'fields' => [], 'settings' => [ 'antispam_v3' => '1', 'ajax_submit' => '1', 'confirmation_message_scroll' => '1', 'submit_text_processing' => esc_html__( 'Sending...', 'wpforms-lite' ), 'store_spam_entries' => '1', 'anti_spam' => [ 'time_limit' => [ 'enable' => '1', 'duration' => '2', ], ], ], 'meta' => [ 'template' => self::SLUG, ], ]; } } new WPForms_Template_Blank();
关闭
保存