# elementor/3.22.2/modules/nested-accordion/module.php

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

- Page: https://pluginprobe.com/plugins/elementor/3.22.2/code/modules/nested-accordion/module.php
- Raw: https://pluginprobe.com/plugins/elementor/3.22.2/raw/modules/nested-accordion/module.php
- Modified: 2024-03-13T11:40:56+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.22.2/code/modules/nested-accordion/module.php#L10-L20`.

```php
<?php
namespace Elementor\Modules\NestedAccordion;

use Elementor\Plugin;
use Elementor\Core\Base\Module as BaseModule;


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

class Module extends BaseModule {

	public static function is_active() {
		return Plugin::$instance->experiments->is_feature_active( 'nested-elements' );
	}

	public function get_name() {
		return 'nested-accordion';
	}

	public function __construct() {
		parent::__construct();

		add_action( 'elementor/editor/before_enqueue_scripts', function () {
			wp_enqueue_script( $this->get_name(), $this->get_js_assets_url( $this->get_name() ), [
				'nested-elements',
			], ELEMENTOR_VERSION, true );
		} );
	}
}

```
