# elementor/3.13.3/core/experiments/wrap-core-dependency.php

Elementor Website Builder – more than just a page builder, version 3.13.3. 32 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.13.3/code/core/experiments/wrap-core-dependency.php
- Raw: https://pluginprobe.com/plugins/elementor/3.13.3/raw/core/experiments/wrap-core-dependency.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.13.3/code/core/experiments/wrap-core-dependency.php#L10-L20`.

```php
<?php
namespace Elementor\Core\Experiments;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class Wrap_Core_Dependency {

	private $feature_data;

	public function __construct( $feature_data ) {
		$this->feature_data = $feature_data;
	}

	public function get_name() {
		return $this->feature_data['name'];
	}

	public function get_title() {
		return $this->feature_data['title'];
	}

	public function is_hidden() {
		return $this->feature_data['hidden'];
	}

	public static function instance( $feature_data ) {
		return new static( $feature_data );
	}
}

```
