MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/www/india/wp-content/plugins/mega_main_menu/extensions/widgets/register_sidebars.php
<?php
/**
 * @package MegaMain
 * @subpackage MegaMain
 * @since mm 1.0
 */

	/**
	 * Number of additional widget areas for dropdowns.
	 */
	add_action( 'init', 'mmm_register_sidebars', 200 );
	if ( !function_exists( 'mmm_register_sidebars' ) ) {
		function mmm_register_sidebars () {
			global $mega_main_menu;
			$number_of_widgets = $mega_main_menu->get_option( 'number_of_widgets', '1' );
			if ( is_numeric( $number_of_widgets ) && $number_of_widgets > 0 ) {
				for ( $i=1; $i <= $number_of_widgets; $i++ ) { 
					register_sidebar(
						array(
							'name' => __( $mega_main_menu->constant[ 'MM_WARE_NAME' ] . ' dropdown ' . $i, $mega_main_menu->constant[ 'MM_TEXTDOMAIN_ADMIN' ]  ),
							'id'=> $mega_main_menu->constant[ 'MM_WARE_PREFIX' ] . '_menu_widgets_area_' . $i,
							'before_widget' => '<div id="%1$s" class="widget %2$s">',
							'after_widget' => '</div>',
							'before_title' => '<div class="widgettitle">',
							'after_title' => '</div>',
						)
					);
				}
			}
		}
	}

	/**
	 * Menu widget
	 *
	 * @since 1.0.8
	 */
	 class mega_main_sidebar_menu extends WP_Widget {

		function __construct() {
			$widget_ops = array( 'description' => __('Add a "Mega Main Menu" to your sidebar.') );
			parent::__construct( 'mega_main_sidebar_menu', __('Mega Main Sidebar Menu'), $widget_ops );
		}

		function widget($args, $instance) {
			// Get menu
			$nav_menu = ! empty( $instance['nav_menu'] ) ? wp_get_nav_menu_object( $instance['nav_menu'] ) : false;
			if ( !$nav_menu ) {
				return;
			}
			$instance['title'] = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base );
			echo $args['before_widget'];
			if ( !empty($instance['title']) ) { 
				echo $args['before_title'] . $instance['title'] . $args['after_title'];
			}
			wp_nav_menu( array( 'theme_location' => 'mega_main_sidebar_menu', 'menu' => $nav_menu ) );
			echo $args['after_widget'];
		}

		function update( $new_instance, $old_instance ) {
			$instance['title'] = strip_tags( stripslashes($new_instance['title']) );
			$instance['nav_menu'] = (int) $new_instance['nav_menu'];
			return $instance;
		}

		function form( $instance ) {
			$title = isset( $instance['title'] ) ? $instance['title'] : '';
			$nav_menu = isset( $instance['nav_menu'] ) ? $instance['nav_menu'] : '';

			// Get menus
			$menus = wp_get_nav_menus( array( 'orderby' => 'name' ) );

			// If no menus exists, direct the user to go and create some.
			if ( !$menus ) {
				echo '<p>'. sprintf( __('No menus have been created yet. <a href="%s">Create some</a>.'), admin_url('nav-menus.php') ) .'</p>';
				return;
			}
			?>
			<p>
				<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:') ?></label>
				<input type="text" class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" value="<?php echo $title; ?>" />
			</p>
			<p>
				<label for="<?php echo $this->get_field_id('nav_menu'); ?>"><?php _e('Select Menu:'); ?></label>
				<select id="<?php echo $this->get_field_id('nav_menu'); ?>" name="<?php echo $this->get_field_name('nav_menu'); ?>">
			<?php
				foreach ( $menus as $menu ) {
					echo '<option value="' . $menu->term_id . '"'
						. selected( $nav_menu, $menu->term_id, false )
						. '>'. $menu->name . '</option>';
				}
			?>
				</select>
			</p>
			<?php
		}
	}

	/**
	 * Register menu location for sidebar.
	 */
	add_action( 'widgets_init', 'mmm_mega_main_menu_widget' );
	if ( !function_exists( 'mmm_mega_main_menu_widget' ) ) {
		function mmm_mega_main_menu_widget () {
			register_nav_menu( 'mega_main_sidebar_menu', 'Sidebar Menu by Mega Main' );
			register_widget("mega_main_sidebar_menu");
		}
	}

	/**
	 * Register Shortcode for mega menu.
	 */
	add_action( 'init', 'mmm_register_mega_main_menu_shortcode', 20 );
	if ( !function_exists( 'mmm_register_mega_main_menu_shortcode' ) ) {
		function mmm_register_mega_main_menu_shortcode () {
			add_shortcode( 'mega_main_menu', 'mmm_mega_main_menu_shortcode' );
			if ( function_exists( 'vc_map' ) ) {
				if ( function_exists( 'mmm_mega_main_menu_shortcode' ) ) {
					$vc_options = call_user_func( 'mmm_mega_main_menu_shortcode' , 'generator' );
					vc_map( $vc_options );
				}
			}
		}
		function mmm_mega_main_menu_shortcode ( $atts = null, $content = null ) {
			if( $atts == 'generator' ) {
				foreach ( get_registered_nav_menus() as $key => $value ){
					$key = str_replace( ' ', '-', $key );
					$theme_menu_locations[ $key ] = $key;
				}
				foreach ( get_nav_menu_locations() as $key => $value ){
					$key = str_replace( ' ', '-', $key );
					$theme_menu_locations[ $key ] = $key;
				}
				return array(
					'name' => __( 'Mega Main Menu', 'js_composer' ),
					'base' => 'mega_main_menu',
					'class' => 'mega_main_menu',
//					'icon' => 'im-icon-menu-3',
					'category' => __( 'MegaMain Extensions', 'js_composer' ),
					'params' => array(
						array(
							'heading' => __( 'Select Layout (skin)', 'js_composer' ),
							'description' => __( 'Select the animation style of the appearance for this element.', 'js_composer' ),
							'param_name' => 'animation',
							'type' => 'dropdown',
							'value' => $theme_menu_locations,
						),
					),
				);
			}
			$atts = ( 
				shortcode_atts(
					array(
						'location' => 'mega_main_sidebar_menu',
					), 
					$atts
				)
			);
			extract( $atts );
			$out = wp_nav_menu( array( 'theme_location' => $location, 'echo' => false ) );
			return $out;
		}
	}


?>