# elementor/3.17.3/core/debug/classes/inspection-base.php

Elementor Website Builder – more than just a page builder, version 3.17.3. 33 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.17.3/code/core/debug/classes/inspection-base.php
- Raw: https://pluginprobe.com/plugins/elementor/3.17.3/raw/core/debug/classes/inspection-base.php
- Modified: 2023-04-23T11:22:46+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/elementor/3.17.3/code/core/debug/classes/inspection-base.php#L10-L20`.

```php
<?php
namespace Elementor\Core\Debug\Classes;

abstract class Inspection_Base {

	/**
	 * @return bool
	 */
	abstract public function run();

	/**
	 * @return string
	 */
	abstract public function get_name();

	/**
	 * @return string
	 */
	abstract public function get_message();

	/**
	 * @return string
	 */
	public function get_header_message() {
		return esc_html__( 'The preview could not be loaded', 'elementor' );
	}

	/**
	 * @return string
	 */
	abstract public function get_help_doc_url();
}

```
