• File: module.php
  • Full Path: /home/bravrvjk/hpgt.org/wp-content/plugins/royal-elementor-addons/modules/password-protected-content/module.php
  • Date Modified: 04/10/2026 2:58 PM
  • File size: 369 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
namespace WprAddons\Modules\PasswordProtectedContent;

use WprAddons\Base\Module_Base;

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

class Module extends Module_Base {

	public function get_widgets() {
		return [
			'Wpr_Password_Protected_Content',
		];
	}

	public function get_name() {
		return 'wpr-password-protected-content';
	}
}