%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/jalalj2hb/www/wp-content/plugins/elementor/includes/debug/
Upload File :
Create Path :
Current File : /home/jalalj2hb/www/wp-content/plugins/elementor/includes/debug/debug-reporter.php

<?php
namespace Elementor\Debug;

use Elementor\System_Info\Classes\Abstracts\Base_Reporter;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Elementor debug reporter.
 *
 * Elementor debug reporter handler class is responsible for generating the
 * debug reports.
 *
 * @since 1.0.0
 */
class Debug_Reporter extends Base_Reporter {

	/**
	 * Get debug reporter title.
	 *
	 * Retrieve the debug reporter title.
	 *
	 * @since 1.0.0
	 * @access public
	 *
	 * @return string Debug reporter title.
	 */
	public function get_title() {
		return 'Debug';
	}

	/**
	 * Get debug reporter fields.
	 *
	 * Retrieve the debug reporter fields.
	 *
	 * @since 1.0.0
	 * @access public
	 *
	 * @return array Debug reporter fields.
	 */
	public function get_fields() {
		return [
			'errors' => 'Errors',
		];
	}

	/**
	 * Get debug reporter errors.
	 *
	 * Retrieve the debug reporter errors from the database.
	 *
	 * @since 1.0.0
	 * @access public
	 *
	 * @return array Debug reporter errors.
	 */
	public function get_errors() {
		$log = get_option( Debug::OPTION_NAME, [] );

		$log = array_reverse( $log );

		$log_string = '';

		foreach ( $log as $index => $item ) {
			$date = date( 'Y-m-d H:i P', $item['timestamp'] );

			$message = stripslashes( $item['message'] );

			$log_string .= "\n\t\t$item[type]: $message\n\t\t\tat $item[url] - $item[line]:$item[column]\n\t\t\t$date\n";

			if ( $item['customFields'] ) {
				foreach ( $item['customFields'] as $key => $value ) {
					$log_string .= "\t\t\t$key: $value\n";
				}
			}

			if ( ! empty( $item['times'] ) ) {
				$log_string .= "\t\t\tx $item[times] times\n";
			}
		}

		if ( ! $log_string ) {
			$log_string = 'There are no errors to display';
		}

		return [
			'value' => $log_string,
		];
	}
}

Zerion Mini Shell 1.0