Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
plugins
/
everest-forms
/
includes
/
admin
/
Editing: class-evf-admin-tools.php
<?php /** * Debug/Status page * * @package EverestForms/Admin/Tools * @version 1.0.0 */ defined( 'ABSPATH' ) || exit; /** * EVF_Admin_Tools Class. */ class EVF_Admin_Tools { /** * Handles output of the reports page in admin. */ public static function output() { include_once __DIR__ . '/views/html-admin-page-tools.php'; } /** * Show the import page. */ public static function import() { include_once __DIR__ . '/views/html-admin-page-import.php'; } /** * Show the export page. */ public static function export() { include_once __DIR__ . '/views/html-admin-page-export.php'; } /** * Show the Form migrator page. * * @since 2.0.6 */ public static function form_migrator() { // Form object list. $forms_object = array( 'contactform7' => class_exists( 'EVF_Fm_Contactform7' ) ? new EVF_Fm_Contactform7() : '', 'wpforms' => class_exists( 'EVF_Fm_wpforms' ) ? new EVF_Fm_Wpforms() : '', ); // Forms status. $forms_status = array(); foreach ( $forms_object as $form_id => $form_obj ) { $forms_status[] = $form_obj->register( array() ); // For dismiss the notification. if ( ! $form_obj->is_dimissed() ) { $option_id = 'evf_fm_dismiss_xnotice_' . $form_obj->slug; update_option( $option_id, true ); } } include_once __DIR__ . '/views/html-admin-page-form-migrator.php'; } /** * Show the setting page. */ public static function setting() { include_once __DIR__ . '/views/html-admin-page-setting.php'; } /** * Show the logs page. */ public static function status_logs() { self::status_logs_file(); } /** * Show the log page contents for file log handler. */ public static function status_logs_file() { $logs = self::scan_log_files(); if ( ! empty( $_REQUEST['log_file'] ) && isset( $logs[ sanitize_title( wp_unslash( $_REQUEST['log_file'] ) ) ] ) ) { // phpcs:ignore WordPress.Security.NonceVerification $viewed_log = $logs[ sanitize_title( wp_unslash( $_REQUEST['log_file'] ) ) ]; // phpcs:ignore WordPress.Security.NonceVerification } elseif ( ! empty( $logs ) ) { $viewed_log = current( $logs ); } if ( ! empty( $_REQUEST['handle'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification self::remove_log(); } // Remove All Logs. if ( ! empty( $_REQUEST['handle_all'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification self::remove_all_logs(); } include_once 'views/html-admin-page-tools-logs.php'; } /** * Retrieve metadata from a file. Based on WP Core's get_file_data function. * * @since 1.0.0 * @param string $file Path to the file. * @return string */ public static function get_file_version( $file ) { // Avoid notices if file does not exist. if ( ! file_exists( $file ) ) { return ''; } // We don't need to write to the file, so just open for reading. $fp = fopen( $file, 'r' ); // @codingStandardsIgnoreLine // Pull only the first 8kiB of the file in. $file_data = fread( $fp, 8192 ); // @codingStandardsIgnoreLine // PHP will close file handle, but we are good citizens. fclose( $fp ); // @codingStandardsIgnoreLine // Make sure we catch CR-only line endings. $file_data = str_replace( "\r", "\n", $file_data ); $version = ''; if ( preg_match( '/^[ \t\/*#@]*' . preg_quote( '@version', '/' ) . '(.*)$/mi', $file_data, $match ) && $match[1] ) { $version = _cleanup_header_comment( $match[1] ); } return $version; } /** * Return the log file handle. * * @param string $filename Filename to get the handle for. * @return string */ public static function get_log_file_handle( $filename ) { return substr( $filename, 0, strlen( $filename ) > 48 ? strlen( $filename ) - 48 : strlen( $filename ) - 4 ); } /** * Scan the template files. * * @param string $template_path Path to the template directory. * @return array */ public static function scan_template_files( $template_path ) { $files = @scandir( $template_path ); // @codingStandardsIgnoreLine $result = array(); if ( ! empty( $files ) ) { foreach ( $files as $key => $value ) { if ( ! in_array( $value, array( '.', '..' ), true ) ) { if ( is_dir( $template_path . DIRECTORY_SEPARATOR . $value ) ) { $sub_files = self::scan_template_files( $template_path . DIRECTORY_SEPARATOR . $value ); foreach ( $sub_files as $sub_file ) { $result[] = $value . DIRECTORY_SEPARATOR . $sub_file; } } else { $result[] = $value; } } } } return $result; } /** * Scan the log files. * * @return array */ public static function scan_log_files() { $files = @scandir( EVF_LOG_DIR ); // @codingStandardsIgnoreLine $result = array(); if ( ! empty( $files ) ) { foreach ( $files as $key => $value ) { if ( ! in_array( $value, array( '.', '..' ), true ) ) { if ( ! is_dir( $value ) && strstr( $value, '.log' ) ) { $result[ sanitize_title( $value ) ] = $value; } } } } return $result; } /** * Remove/delete the chosen file. */ public static function remove_log() { if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( wp_unslash( $_REQUEST['_wpnonce'] ) ), 'remove_log' ) ) { wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'everest-forms' ) ); } if ( ! empty( $_REQUEST['handle'] ) ) { $log_handler = new EVF_Log_Handler_File(); $log_handler->remove( sanitize_text_field( wp_unslash( $_REQUEST['handle'] ) ) ); } wp_safe_redirect( esc_url_raw( admin_url( 'admin.php?page=evf-tools&tab=logs' ) ) ); exit(); } /** * Remove/delete all logs. */ public static function remove_all_logs() { if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( wp_unslash( $_REQUEST['_wpnonce'] ) ), 'remove_all_logs' ) ) { wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'everest-forms' ) ); } if ( ! empty( $_REQUEST['handle_all'] ) ) { $log_handler = new EVF_Log_Handler_File(); $log_handler->remove_all(); } wp_safe_redirect( esc_url_raw( admin_url( 'admin.php?page=evf-tools&tab=logs' ) ) ); exit(); } /** * Roles and permission. * * @since 3.0.8 */ public static function roles_and_permission() { echo '<div id="evf-roles-and-permission"></div>'; } /** * Handles output of the Smart SMTP Settings Page. * * @since 3.0.8 */ public static function evf_smart_smtp_setup() { include_once __DIR__ . '/views/html-admin-page-smart-smtp-setup.php'; } }
Save
Cancel