uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
www
/
wp-content
/
plugins
/
charitable
/
includes
/
debugging
/
class-charitable-debugging.php
/
/
<?php /** * Responsible for helping with debugging. * * @package Charitable/Classes/Charitable_Debugging * @author David Bisset * @copyright Copyright (c) 2023, WP Charitable LLC * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.6.42 * @version 1.6.42 */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! class_exists( 'Charitable_Debugging' ) ) : /** * Charitable_Debugging * * @since 1.6.42 */ class Charitable_Debugging { /** * Create class object. * * @since 1.6.42 */ public function __construct() { /** * Automatically add Charitable's debugging constants when * using the WP Debugging plugin. */ add_filter( 'wp_debugging_add_constants', array( $this, 'add_debugging_constants' ) ); } /** * Add debugging constants. * * @since 1.6.42 * * @param array $added_constants Collection of added constants. * @return array */ public function add_debugging_constants( $added_constants ) { return array_merge( $added_constants, array( 'charitable_debug' => array( 'value' => 'true' ) ) ); } } endif;
/home/batcwwjx/www/wp-content/plugins/charitable/includes/debugging/class-charitable-debugging.php