# wpsso/trunk/lib/com/nodebug.php

WPSSO Core – Complete Schema Markup and Meta Tags, version trunk. 33 lines.

- Page: https://pluginprobe.com/plugins/wpsso/trunk/code/lib/com/nodebug.php
- Raw: https://pluginprobe.com/plugins/wpsso/trunk/raw/lib/com/nodebug.php
- Modified: 2026-03-25T12:08:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpsso/trunk/code/lib/com/nodebug.php#L10-L20`.

```php
<?php
/*
 * License: GPLv3
 * License URI: https://www.gnu.org/licenses/gpl.txt
 * Copyright 2012-2026 Jean-Sebastien Morisset (https://surniaulula.com/)
 */

if ( ! defined( 'ABSPATH' ) ) {

	die( 'These aren\'t the droids you\'re looking for.' );
}

if ( ! class_exists( 'SucomNoDebug' ) ) {

	class SucomNoDebug {

		public $enabled = false;

		public function __construct() {}
		public function is_enabled() { return false; }
		public function enable() {}
		public function disable() {}
		public function log_args() {}
		public function log_arr() {}
		public function log() {}
		public function mark() {}
		public function mark_caller() {}
		public function mark_diff() {}
		public function show_html() {}
		public function get_html() { return ''; }
	}
}

```
