PluginProbe
Elementor Website Builder – more than just a page builder / 4.2.2
Elementor Website Builder – more than just a page builder v4.2.2
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 / experiments / non-existing-dependency.php

non-existing-dependency.php in Elementor Website Builder – more than just a page builder 4.2.2, at core/experiments/non-existing-dependency.php

32 lines 525 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor\Core\Experiments;
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit; // Exit if accessed directly.
6 }
7
8 class Non_Existing_Dependency {
9
10 private $feature_id;
11
12 public function __construct( $feature_id ) {
13 $this->feature_id = $feature_id;
14 }
15
16 public function get_name() {
17 return $this->feature_id;
18 }
19
20 public function get_title() {
21 return $this->feature_id;
22 }
23
24 public function is_hidden() {
25 return false;
26 }
27
28 public static function instance( $feature_id ) {
29 return new static( $feature_id );
30 }
31 }
32