Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
jetpack-boost-git
/
app
/
lib
:
class-debug.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Implement debug helper methods. * * @link https://automattic.com * @since 1.0.0 * @package automattic/jetpack-boost */ namespace Automattic\Jetpack_Boost\Lib; /** * Class Debug */ class Debug { /** * Returns whether the debug mode has been triggered. */ public static function is_debug_mode() { $script_debug = defined( 'SCRIPT_DEBUG' ) && \SCRIPT_DEBUG; $manual_debug_mode = filter_input( INPUT_GET, 'jetpack-boost-debug' ); $debug = $script_debug || $manual_debug_mode; return apply_filters( 'jetpack_boost_debug', $debug ); } }