Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
header-footer-elementor
/
inc
/
widgets-manager
/
widgets
/
navigation-menu
:
module.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * HFEWpfStyler Module. * * @package header-footer-elementor */ namespace HFE\WidgetsManager\Widgets\NavigationMenu; use HFE\WidgetsManager\Base\Module_Base; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Class Module. */ class Module extends Module_Base { /** * Module should load or not. * * @since 1.15.0 * @access public * * @return bool true|false. */ public static function is_enable() { return true; } /** * Get Module Name. * * @since 1.15.0 * @access public * * @return string Module name. */ public function get_name() { return 'navigation-menu'; } /** * Get Widgets. * * @since 1.15.0 * @access public * * @return array Widgets. */ public function get_widgets() { return [ 'Navigation_Menu', ]; } /** * Constructor. */ public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found parent::__construct(); } }