PluginProbe
Elementor Website Builder – more than just a page builder / 3.30.3
Elementor Website Builder – more than just a page builder v3.30.3
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / core / debug / classes / inspection-base.php

inspection-base.php in Elementor Website Builder – more than just a page builder 3.30.3, at core/debug/classes/inspection-base.php

33 lines 502 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor\Core\Debug\Classes;
3
4 abstract class Inspection_Base {
5
6 /**
7 * @return bool
8 */
9 abstract public function run();
10
11 /**
12 * @return string
13 */
14 abstract public function get_name();
15
16 /**
17 * @return string
18 */
19 abstract public function get_message();
20
21 /**
22 * @return string
23 */
24 public function get_header_message() {
25 return esc_html__( 'The preview could not be loaded', 'elementor' );
26 }
27
28 /**
29 * @return string
30 */
31 abstract public function get_help_doc_url();
32 }
33