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

Elementor Website Builder – more than just a page builder, version 3.18.3. 38 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.18.3/code/modules/nested-accordion/module.php
- Raw: https://pluginprobe.com/plugins/elementor/3.18.3/raw/modules/nested-accordion/module.php
- Modified: 2023-07-09T12:14:12+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.18.3/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 get_widgets() {
		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 );
		} );
	}
}

```
