# quadmenu/trunk/lib/integrations/class-vc.php

QuadMenu – Mega Menu, version trunk. 99 lines.

- Page: https://pluginprobe.com/plugins/quadmenu/trunk/code/lib/integrations/class-vc.php
- Raw: https://pluginprobe.com/plugins/quadmenu/trunk/raw/lib/integrations/class-vc.php
- Modified: 2024-10-03T08:33:36+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/quadmenu/trunk/code/lib/integrations/class-vc.php#L10-L20`.

```php
<?php

if ( ! defined( 'ABSPATH' ) ) {
	die( '-1' );
}

add_action( 'init', 'quadmenu_vc', 50 );

// TODO: check if this go to compatibility
function quadmenu_vc() {

	if ( ! class_exists( '\\WPBakeryShortCode' ) ) {
		return;
	}

	class WPBakeryShortCode_quadmenu_vc extends \WPBakeryShortCode {

		protected function content( $atts, $content = null ) {

			if ( function_exists( 'quadmenu' ) ) {

				$theme = '';

				extract(
					shortcode_atts(
						array(
							'menu'  => '',
							'theme' => '',
						),
						$atts
					)
				);

				$args = array(
					'echo'   => false,
					'menu'   => $menu,
					'theme'  => $theme,
					'layout' => 'inherit',
				);

				return quadmenu( $args );
			}
		}
	}

	if ( ! function_exists( 'vc_map' ) ) {
		return;
	}

	vc_map(
		array(
			'base'        => 'quadmenu_vc',
			'name'        => QUADMENU_PLUGIN_NAME,
			'icon'        => '',
			'category'    => esc_html__( 'Content', 'quadmenu' ),
			'description' => esc_html__( 'QuadMenu Shortcode', 'quadmenu' ),
			'params'      => array(
				array(
					'type'        => 'dropdown',
					'heading'     => esc_html__( 'Menus', 'quadmenu' ),
					'param_name'  => 'menu',
					'value'       => quadmenu_vc_menus(),
					'description' => esc_html__( 'Choose a menu.', 'quadmenu' ),
				),
				array(
					'type'        => 'dropdown',
					'heading'     => esc_html__( 'Theme', 'quadmenu' ),
					'param_name'  => 'theme',
					'value'       => quadmenu_vc_themes(),
					'description' => esc_html__( 'Choose a theme location.', 'quadmenu' ),
				),
			),
		)
	);
}

function quadmenu_vc_themes( $themes = array() ) {

	global $quadmenu_themes;

	foreach ( $quadmenu_themes as $key => $theme ) {

		$themes[ $theme ] = $key;
	}

	return $themes;
}

function quadmenu_vc_menus( $menus_ids = array() ) {

	$menus = wp_get_nav_menus();

	foreach ( $menus as $key => $menu ) {
		$menus_ids[ $menu->name ] = $menu->term_id;
	}

	return $menus_ids;
}

```
