File "tabbed.php"
Full path: /home/cirmwrhs/www/renard-music/wp-content/plugins/megamenu-pro/tabbed/tabbed.php
File
size: 0.02 KB (17.46 KB bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // disable direct access
}
if ( ! class_exists('Mega_Menu_Tabbed') ) :
/**
*
*/
class Mega_Menu_Tabbed {
/**
* Constructor
*
* @since 1.5
*/
public function __construct() {
add_filter( 'megamenu_submenu_options', array( $this, 'add_tabbed_megamenu_option'), 10, 2 );
add_filter( 'megamenu_nav_menu_objects_before', array( $this, 'identify_tabbed_submenus' ), 7, 2 );
add_filter( 'megamenu_tabs', array( $this, 'add_mega_menu_tab_to_second_level_items'), 11, 5 );
add_filter( 'megamenu_load_scss_file_contents', array( $this, 'append_tabbed_scss'), 10 );
add_filter( 'megamenu_theme_editor_settings', array( $this, 'add_theme_editor_settings' ), 10 );
add_filter( 'megamenu_default_theme', array($this, 'add_theme_placeholders'), 10 );
add_filter( 'megamenu_tabs', array( $this, 'add_tabbed_mega_menu_tab'), 11, 5 );
}
/**
* Return the HTML to display in the 'Mega Menu' tab
*
* @since 1.7
* @return array
*/
public function add_tabbed_mega_menu_tab( $tabs, $menu_item_id, $menu_id, $menu_item_depth, $menu_item_meta ) {
if ( $menu_item_depth > 0 ) {
return $tabs;
}
$return = "<div id='megamenu-tabbed'>";
$return .= "<p>" . __("To configure the mega menu for each of your tabs, close this window and load the mega menu settings for each sub menu item. You can configure the mega menu within the 'Tab Content' tab.", "megamenupro") . "</p>";
$return .= "<p><a href='https://www.megamenu.com/documentation/tabbed-mega-menu/' target='_blank'>" . __("View documentation", "megamenupro") . "</a></p>";
$return .= "</div>";
$tabs['mega_menu']['content'] = $tabs['mega_menu']['content'] . $return;
return $tabs;
}
/**
* Insert theme placeholder values. Inherit from flyout menu styling.
*
* @since 1.5
* @param array $theme
* @return array
*/
public function add_theme_placeholders( $theme ) {
$theme['tabbed_link_background_from'] = 'flyout_background_from';
$theme['tabbed_link_background_to'] = 'flyout_background_to';
$theme['tabbed_link_color'] = 'flyout_link_color';
$theme['tabbed_link_family'] = 'flyout_link_family';
$theme['tabbed_link_size'] = 'flyout_link_size';
$theme['tabbed_link_weight'] = 'flyout_link_weight';
$theme['tabbed_link_padding_top'] = 'flyout_link_padding_top';
$theme['tabbed_link_padding_right'] = 'flyout_link_padding_right';
$theme['tabbed_link_padding_bottom'] = 'flyout_link_padding_bottom';
$theme['tabbed_link_padding_left'] = 'flyout_link_padding_left';
$theme['tabbed_link_height'] = 'flyout_link_height';
$theme['tabbed_link_width'] = '20%';
$theme['tabbed_link_text_decoration'] = 'flyout_link_text_decoration';
$theme['tabbed_link_text_transform'] = 'flyout_link_text_transform';
$theme['tabbed_link_background_hover_from'] = 'flyout_background_hover_from';
$theme['tabbed_link_background_hover_to'] = 'flyout_background_hover_to';
$theme['tabbed_link_weight_hover'] = 'flyout_link_weight_hover';
$theme['tabbed_link_text_decoration_hover'] = 'flyout_link_text_decoration_hover';
$theme['tabbed_link_color_hover'] = 'flyout_link_color_hover';
$theme['tabbed_link_vertical_divider'] = '#ccc';
return $theme;
}
/**
* Add the tabbed mega menu settings to the theme editor
*
* @since 1.5
* @param array $settings
* @return array
*/
public function add_theme_editor_settings( $settings ) {
$new_settings = array(
'tabbed_submenus' => array(
'priority' => 240,
'title' => __( "Tabbed Mega Menus", "megamenupro" ),
'description' => '',
),
'tabbed_menu_item_background' => array(
'priority' => 250,
'title' => __( "Tab Background", "megamenupro" ),
'description' => __( "Set the background color for the tabs.", "megamenupro" ),
'settings' => array(
array(
'title' => __( "From", "megamenupro" ),
'type' => 'color',
'key' => 'tabbed_link_background_from'
),
array(
'title' => __( "To", "megamenupro" ),
'type' => 'color',
'key' => 'tabbed_link_background_to'
)
)
),
'tabbed_menu_item_background_hover' => array(
'priority' => 260,
'title' => __( "Tab Background (Hover)", "megamenupro" ),
'description' => __( "Set the background color for the tabs (on hover).", "megamenupro" ),
'settings' => array(
array(
'title' => __( "From", "megamenupro" ),
'type' => 'color',
'key' => 'tabbed_link_background_hover_from'
),
array(
'title' => __( "To", "megamenupro" ),
'type' => 'color',
'key' => 'tabbed_link_background_hover_to'
)
)
),
'tabbed_menu_item_height' => array(
'priority' => 270,
'title' => __( "Tab Height", "megamenupro" ),
'description' => __( "The height of each tab.", "megamenupro" ),
'settings' => array(
array(
'title' => __( "", "megamenupro" ),
'type' => 'freetext',
'key' => 'tabbed_link_height',
'validation' => 'px'
)
)
),
'tabbed_link_width' => array(
'priority' => 275,
'title' => __( "Tab Width", "megamenupro" ),
'description' => __( "Width of each tab. Value must be a percentage (e.g. 20%)", "megamenupro" ),
'settings' => array(
array(
'title' => __( "", "megamenupro" ),
'type' => 'freetext',
'key' => 'tabbed_link_width',
'validation' => 'px'
),
)
),
'tabbed_link_vertical_divider' => array(
'priority' => 278,
'title' => __( "Tab Vertical Divider", "megamenupro" ),
'description' => __( "Set the vertical divider color.", "megamenupro" ),
'settings' => array(
array(
'title' => __( "Color", "megamenupro" ),
'type' => 'color',
'key' => 'tabbed_link_vertical_divider'
)
)
),
'tabbed_menu_item_padding' => array(
'priority' => 280,
'title' => __( "Tab Padding", "megamenupro" ),
'description' => __( "Set the padding for each of the tabs.", "megamenupro" ),
'settings' => array(
array(
'title' => __( "Top", "megamenupro" ),
'type' => 'freetext',
'key' => 'tabbed_link_padding_top',
'validation' => 'px'
),
array(
'title' => __( "Right", "megamenupro" ),
'type' => 'freetext',
'key' => 'tabbed_link_padding_right',
'validation' => 'px'
),
array(
'title' => __( "Bottom", "megamenupro" ),
'type' => 'freetext',
'key' => 'tabbed_link_padding_bottom',
'validation' => 'px'
),
array(
'title' => __( "Left", "megamenupro" ),
'type' => 'freetext',
'key' => 'tabbed_link_padding_left',
'validation' => 'px'
)
)
),
'tabbed_menu_item_font' => array(
'priority' => 290,
'title' => __( "Tab Font", "megamenupro" ),
'description' => __( "Set the font for the tabs.", "megamenupro" ),
'settings' => array(
array(
'title' => __( "Color", "megamenupro" ),
'type' => 'color',
'key' => 'tabbed_link_color'
),
array(
'title' => __( "Size", "megamenupro" ),
'type' => 'freetext',
'key' => 'tabbed_link_size',
'validation' => 'px'
),
array(
'title' => __( "Family", "megamenupro" ),
'type' => 'font',
'key' => 'tabbed_link_family'
),
array(
'title' => __( "Transform", "megamenupro" ),
'type' => 'transform',
'key' => 'tabbed_link_text_transform'
),
array(
'title' => __( "Weight", "megamenupro" ),
'type' => 'weight',
'key' => 'tabbed_link_weight'
),
array(
'title' => __( "Decoration", "megamenupro" ),
'type' => 'decoration',
'key' => 'tabbed_link_text_decoration'
),
)
),
'tabbed_menu_item_font_hover' => array(
'priority' => 300,
'title' => __( "Tab Font (Hover)", "megamenupro" ),
'description' => __( "Set the font for the tabs.", "megamenupro" ),
'settings' => array(
array(
'title' => __( "Color", "megamenupro" ),
'type' => 'color',
'key' => 'tabbed_link_color_hover'
),
array(
'title' => __( "Weight", "megamenupro" ),
'type' => 'weight',
'key' => 'tabbed_link_weight_hover'
),
array(
'title' => __( "Decoration", "megamenupro" ),
'type' => 'decoration',
'key' => 'tabbed_link_text_decoration_hover'
),
)
)
);
$settings['mega_panels']['settings'] = array_merge($settings['mega_panels']['settings'], $new_settings);
return $settings;
}
/**
* Add the CSS required to render tabbed mega menus
*
* @since 1.5
* @param string $scss
* @return string
*/
public function append_tabbed_scss( $scss ) {
$path = trailingslashit( plugin_dir_path( __FILE__ ) ) . 'scss/tabbed.scss';
$contents = file_get_contents( $path );
return $scss . $contents;
}
/**
* Add the tabbed mega menu option to the available sub menu types
*
* @since 1.5
* @param array $options
* @param array $menu_item_meta
*/
public function add_tabbed_megamenu_option( $options, $menu_item_meta ) {
$options['tabbed'] = __("Mega Menu - Tabbed", "megamenupro");
return $options;
}
/**
* Return the Parent ID of a specified menu item
*
* @since 1.5
* @param int $menu_id
* @param int $menu_item_id
*/
public function get_parent_menu_item_id( $menu_id, $menu_item_id ) {
$menu_items = wp_get_nav_menu_items( $menu_id );
foreach ( $menu_items as $order => $menu_item ) {
if ($menu_item->ID == $menu_item_id) {
return $menu_item->menu_item_parent;
}
}
return 0;
}
/**
*
* @since 1.5
*/
public function identify_tabbed_submenus( $items ) {
$items_that_are_tabs = array();
foreach ( $items as $item ) {
if ( $item->parent_submenu_type == 'tabbed' ) {
$items_that_are_tabs[] = $item->ID;
}
}
foreach ( $items as $item ) {
if ( in_array( $item->menu_item_parent, $items_that_are_tabs ) ) {
$item->parent_submenu_type = 'megamenu'; // mark it as a mega menu so the core plugin will add widgets and handle ordering
}
}
return $items;
}
/**
*
* @since 1.5
*/
public function add_mega_menu_tab_to_second_level_items( $tabs, $menu_item_id, $menu_id, $menu_item_depth, $menu_item_meta ) {
if ( $menu_item_depth !== 1 ) {
return $tabs;
}
$parent_menu_item_id = $this->get_parent_menu_item_id( $menu_id, $menu_item_id );
$parent_megamenu_settings = get_post_meta( $parent_menu_item_id, '_megamenu', true );
if ( is_array( $parent_megamenu_settings ) && isset( $parent_megamenu_settings['type'] ) && $parent_megamenu_settings['type'] != 'tabbed' ) {
return $tabs;
}
$menu_item_manager = new Mega_Menu_Menu_Item_Manager();
// default to mega menu layout
if ( ! in_array( $menu_item_meta['type'], array('megamenu', 'grid') ) ) {
$menu_item_meta['type'] = 'megamenu';
}
// default to 6 columns
if ( ! isset( $menu_item_meta['panel_columns'] ) ) {
$menu_item_meta['panel_columns'] = '6';
}
$submenu_options = array(
'megamenu' => __("Mega Menu - Standard Layout", "megamenupro"),
'grid' => __("Mega Menu - Grid Layout", "megamenupro")
);
$return = "<label for='mm_enable_mega_menu'>" . __("Sub menu display mode", "megamenupro") . "</label>";
$return .= "<select id='mm_enable_mega_menu' name='settings[type]'>";
foreach ( $submenu_options as $type => $label ) {
$return .= "<option id='{$type}' value='{$type}' " . selected( $menu_item_meta['type'], $type, false ) . ">{$label}</option>";
}
$return .= "</select>";
$widget_manager = new Mega_Menu_Widget_Manager();
$all_widgets = $widget_manager->get_available_widgets();
$return .= "<div class='mm_panel_options'>";
$return .= " <select id='mm_number_of_columns' name='settings[panel_columns]'>";
$return .= " <option value='1' " . selected( $menu_item_meta['panel_columns'], 1, false ) . ">1 " . __("column", "megamenupro") . "</option>";
$return .= " <option value='2' " . selected( $menu_item_meta['panel_columns'], 2, false ) . ">2 " . __("columns", "megamenupro") . "</option>";
$return .= " <option value='3' " . selected( $menu_item_meta['panel_columns'], 3, false ) . ">3 " . __("columns", "megamenupro") . "</option>";
$return .= " <option value='4' " . selected( $menu_item_meta['panel_columns'], 4, false ) . ">4 " . __("columns", "megamenupro") . "</option>";
$return .= " <option value='5' " . selected( $menu_item_meta['panel_columns'], 5, false ) . ">5 " . __("columns", "megamenupro") . "</option>";
$return .= " <option value='6' " . selected( $menu_item_meta['panel_columns'], 6, false ) . ">6 " . __("columns", "megamenupro") . "</option>";
$return .= " <option value='7' " . selected( $menu_item_meta['panel_columns'], 7, false ) . ">7 " . __("columns", "megamenupro") . "</option>";
$return .= " <option value='8' " . selected( $menu_item_meta['panel_columns'], 8, false ) . ">8 " . __("columns", "megamenupro") . "</option>";
$return .= " <option value='9' " . selected( $menu_item_meta['panel_columns'], 9, false ) . ">9 " . __("columns", "megamenupro") . "</option>";
$return .= " </select>";
$return .= " <select id='mm_widget_selector'>";
$return .= " <option value='disabled'>" . __("Select a Widget to add to the panel", "megamenupro") . "</option>";
foreach ( $all_widgets as $widget ) {
$return .= " <option value='" . $widget['value'] . "'>" . $widget['text'] . "</option>";
}
$return .= " </select>";
$return .= "</div>";
if ( method_exists( $menu_item_manager, "get_megamenu_html" ) && method_exists( $menu_item_manager, "get_megamenu_grid_html" ) ) {
$return .= $menu_item_manager->get_megamenu_html( $menu_item_id, $menu_id, $menu_item_depth, $menu_item_meta );
$return .= $menu_item_manager->get_megamenu_grid_html( $menu_item_id, $menu_id, $menu_item_depth, $menu_item_meta );
} else {
$return .= "<div class='notice notice-success'><p>";
$return .= __("Please update Max Mega Menu (free) to v2.4+", "megamenupro");
$return .= "</p></div>";
$return .= "</div>";
}
$tabs['mega_menu'] = array(
'title' => __('Tab Content', 'megamenu'),
'content' => $return
);
$tabs['active_tab'] = 'mega_menu';
return $tabs;
}
}
endif;