PluginProbe
WPSSO Core – Complete Schema Markup and Meta Tags / trunk
WPSSO Core – Complete Schema Markup and Meta Tags vtrunk
22.6.1 22.6.0 22.5.3 22.5.2 22.5.1 22.4.0 22.3.0 22.2.1 22.2.0 22.1.3 22.1.2 22.1.1 22.1.0 22.0.0 21.13.3 21.13.2 trunk 21.13.1
wpsso / lib / com / nodebug.php

nodebug.php in WPSSO Core – Complete Schema Markup and Meta Tags trunk, at lib/com/nodebug.php

33 lines 759 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * License: GPLv3
4 * License URI: https://www.gnu.org/licenses/gpl.txt
5 * Copyright 2012-2026 Jean-Sebastien Morisset (https://surniaulula.com/)
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9
10 die( 'These aren\'t the droids you\'re looking for.' );
11 }
12
13 if ( ! class_exists( 'SucomNoDebug' ) ) {
14
15 class SucomNoDebug {
16
17 public $enabled = false;
18
19 public function __construct() {}
20 public function is_enabled() { return false; }
21 public function enable() {}
22 public function disable() {}
23 public function log_args() {}
24 public function log_arr() {}
25 public function log() {}
26 public function mark() {}
27 public function mark_caller() {}
28 public function mark_diff() {}
29 public function show_html() {}
30 public function get_html() { return ''; }
31 }
32 }
33