HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/triad-infosec/wp-content/plugins/simple-history/inc/global-helpers.php
<?php
/**
 * Global helper functions.
 *
 * Not namespaced, so they are available everywhere.
 */

use Simple_History\Simple_History;
use Simple_History\Loggers\Simple_Logger;

if ( ! function_exists( 'SimpleLogger' ) ) {
	/**
	 * Helper function with same name as the SimpleLogger-class
	 *
	 * @example Log a message to the log.
	 *
	 * ```php
	 * SimpleLogger()->info("This is a message sent to the log");
	 * ```
	 *
	 * @return Simple_Logger
	 */
	function SimpleLogger() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid, WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
		return new Simple_Logger( Simple_History::get_instance() );
	}
}

if ( ! function_exists( 'sh_error_log' ) ) {
	/**
	 * Log variable(s) to error log.
	 * Any number of variables can be passed and each variable is print_r'ed to the error log.
	 *
	 * Example usage:
	 * sh_error_log(
	 *   'rest_request_after_callbacks:',
	 *   $handler,
	 *   $handler['callback'][0],
	 *   $handler['callback'][1]
	 * );
	 */
	function sh_error_log() { // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
		foreach ( func_get_args() as $var ) {
			if ( is_bool( $var ) ) {
				$bool_string = $var ? 'true' : 'false';
				error_log( "$bool_string (boolean value)" );
			} elseif ( is_null( $var ) ) {
				error_log( 'null (null value)' );
			} else {
				error_log( print_r( $var, true ) );
			}
		}
	}
}

if ( ! function_exists( 'sh_d' ) ) {
	/**
	 * Echoes any number of variables for debug purposes.
	 *
	 * Example usage:
	 *
	 * sh_d('Values from $_GET', $_GET);
	 * sh_d('$_POST', $_POST);
	 * sh_d('My vars', $varOne, $varTwo, $varXYZ);
	 *
	 * @param mixed[] ...$args Variables to output.
	 */
	function sh_d( ...$args ) { // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
		$output = '';

		foreach ( $args as $var ) {
			$loopOutput = '';
			if ( is_bool( $var ) ) {
				$bool_string = $var ? 'true' : 'false';
				$loopOutput = "$bool_string (boolean value)";
			} elseif ( is_null( $var ) ) {
				$loopOutput = ( 'null (null value)' );
			} elseif ( is_int( $var ) ) {
				$loopOutput = "$var (integer value)";
			} elseif ( is_numeric( $var ) ) {
				$loopOutput = "$var (numeric string)";
			} elseif ( is_string( $var ) && $var === '' ) {
				$loopOutput = "'' (empty string)";
			} else {
				$loopOutput = print_r( $var, true );
			}

			if ( $loopOutput !== '' ) {
				$maybe_escaped_loop_output = 'cli' === php_sapi_name() ? $loopOutput : esc_html( $loopOutput );

				$output .= sprintf(
					'
                <pre>%1$s</pre>
                ',
					$maybe_escaped_loop_output
				);
			}
		}

		// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		echo $output;
	}
}

if ( ! function_exists( 'sh_dd' ) ) {
	/**
	 * Echoes any number of variables for debug purposes and then die.
	 *
	 * Example usage:
	 *
	 * sh_dd('Values from $_GET', $_GET);
	 * sh_dd('$_POST', $_POST);
	 * sh_dd('My vars', $varOne, $varTwo, $varXYZ);
	 *
	 * @param mixed[] ...$args Variables to output.
	 */
	function sh_dd( ...$args ) { // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
		sh_d( ...$args );
		die();
	}
}