[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.117.100.220: ~ $
<?php
/**
 * Logger class
 * Describes a logger instance
 *
 * Based on PSR-3: http://www.php-fig.org/psr/psr-3/
 *
 * The message MUST be a string or object implementing __toString().
 *
 * The message MAY contain placeholders in the form: {foo} where foo
 * will be replaced by the context data in key "foo".
 *
 * The context array can contain arbitrary data, the only assumption that
 * can be made by implementors is that if an Exception instance is given
 * to produce a stack trace, it MUST be in a key named "exception".
 *
 * See https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md
 * for the full interface specification.
 *
 * @see https://github.com/humanmade/WordPress-Importer/blob/master/class-logger.php
 * @package Kadence Starter Templates
 */

namespace KadenceWP\KadenceStarterTemplates;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Logger {
	public $min_level = '';
	public $messages = array();
	/**
	 * System is unusable.
	 *
	 * @param string $message
	 * @param array $context
	 * @return null
	 */
	public function emergency( $message, array $context = array() ) {
		return $this->log( 'emergency', $message, $context );
	}

	/**
	 * Action must be taken immediately.
	 *
	 * Example: Entire website down, database unavailable, etc. This should
	 * trigger the SMS alerts and wake you up.
	 *
	 * @param string $message
	 * @param array $context
	 * @return null
	 */
	public function alert( $message, array $context = array() ) {
		return $this->log( 'alert', $message, $context );
	}

	/**
	 * Critical conditions.
	 *
	 * Example: Application component unavailable, unexpected exception.
	 *
	 * @param string $message
	 * @param array $context
	 * @return null
	 */
	public function critical( $message, array $context = array() ) {
		return $this->log( 'critical', $message, $context );
	}

	/**
	 * Runtime errors that do not require immediate action but should typically
	 * be logged and monitored.
	 *
	 * @param string $message
	 * @param array $context
	 * @return null
	 */
	public function error( $message, array $context = array()) {
		return $this->log( 'error', $message, $context );
	}

	/**
	 * Exceptional occurrences that are not errors.
	 *
	 * Example: Use of deprecated APIs, poor use of an API, undesirable things
	 * that are not necessarily wrong.
	 *
	 * @param string $message
	 * @param array $context
	 * @return null
	 */
	public function warning( $message, array $context = array() ) {
		return $this->log( 'warning', $message, $context );
	}

	/**
	 * Normal but significant events.
	 *
	 * @param string $message
	 * @param array $context
	 * @return null
	 */
	public function notice( $message, array $context = array() ) {
		return $this->log( 'notice', $message, $context );
	}

	/**
	 * Interesting events.
	 *
	 * Example: User logs in, SQL logs.
	 *
	 * @param string $message
	 * @param array $context
	 * @return null
	 */
	public function info( $message, array $context = array() ) {
		return $this->log( 'info', $message, $context );
	}

	/**
	 * Detailed debug information.
	 *
	 * @param string $message
	 * @param array $context
	 * @return null
	 */
	public function debug( $message, array $context = array() ) {
		return $this->log( 'debug', $message, $context );
	}

	/**
	 * Logs with an arbitrary level.
	 *
	 * @param mixed $level
	 * @param string $message
	 * @param array $context
	 * @return null
	 */
	public function log( $level, $message, array $context = array() ) {
		$this->messages[] = array(
			'timestamp' => time(),
			'level'     => $level,
			'message'   => $message,
			'context'   => $context,
		);
	}
}

Filemanager

Name Type Size Permission Actions
resources Folder 0755
class-author-meta.php File 10.29 KB 0644
class-customizer-importer.php File 12.64 KB 0644
class-customizer-option.php File 565 B 0644
class-downloader.php File 3.88 KB 0644
class-helpers.php File 26.42 KB 0644
class-import-actions.php File 19.17 KB 0644
class-import-customizer-option.php File 680 B 0644
class-import-depicter.php File 1.04 KB 0644
class-import-elementor.php File 1.12 KB 0644
class-import-export-control.php File 2.4 KB 0644
class-import-export-option.php File 13.49 KB 0644
class-import-fluent.php File 6.36 KB 0644
class-import-give.php File 9.55 KB 0644
class-importer.php File 29.3 KB 0644
class-logger-cli.php File 2.46 KB 0644
class-logger.php File 3.55 KB 0644
class-plugin-check.php File 1.54 KB 0644
class-starter-ai-events.php File 8.99 KB 0644
class-template-database-importer.php File 12.86 KB 0644
class-template-library-rest-api.php File 172.07 KB 0644
class-widget-importer.php File 13.35 KB 0644
class-wxr-importer.php File 4.03 KB 0644