/var/www/html/wp-content/plugins/elementor/core/debug/classes/inspection-base.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?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();
}