Linux webm002.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
/
home
/
a
/
r
/
i
/
ariannadhf
/
www
/
wp-content
/
plugins
/
simple-history
/
inc
/
/home/a/r/i/ariannadhf/www/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. * This is a debug function. * * 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'; // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log error_log( "$bool_string (boolean value)" ); } elseif ( is_null( $var ) ) { // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log error_log( 'null (null value)' ); } else { // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log, WordPress.PHP.DevelopmentFunctions.error_log_print_r 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 { // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r $loopOutput = print_r( $var, true ); } if ( $loopOutput === '' ) { continue; } $maybe_escaped_loop_output = php_sapi_name() === 'cli' ? $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(); } }