0byt3m1n1
Path:
/
var
/
lib
/
vz
/
www
/
clients
/
client6
/
web11
/
web
/
wp-content
/
plugins
/
megamenu
/
classes
/
[
Home
]
File: settings.class.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // disable direct access } if ( ! class_exists( 'Mega_Menu_Settings' ) ) : /** * Handles all admin related functionality. */ class Mega_Menu_Settings { /** * All themes (default and custom) */ var $themes = array(); /** * Active theme */ var $active_theme = array(); /** * Active theme ID */ var $id = ""; /** * Constructor * * @since 1.0 */ public function __construct() { add_action( 'wp_ajax_megamenu_save_theme', array( $this, 'ajax_save_theme' ) ); add_action( 'admin_post_megamenu_save_theme', array( $this, 'save_theme') ); add_action( 'admin_post_megamenu_add_theme', array( $this, 'create_theme') ); add_action( 'admin_post_megamenu_delete_theme', array( $this, 'delete_theme') ); add_action( 'admin_post_megamenu_revert_theme', array( $this, 'revert_theme') ); add_action( 'admin_post_megamenu_import_theme', array( $this, 'import_theme') ); add_action( 'admin_post_megamenu_duplicate_theme', array( $this, 'duplicate_theme') ); add_action( 'admin_post_megamenu_add_menu_location', array( $this, 'add_menu_location') ); add_action( 'admin_post_megamenu_delete_menu_location', array( $this, 'delete_menu_location') ); add_action( 'admin_post_megamenu_save_settings', array( $this, 'save_settings') ); add_action( 'admin_post_megamenu_clear_css_cache', array( $this, 'tools_clear_css_cache') ); add_action( 'admin_post_megamenu_delete_data', array( $this, 'delete_data') ); add_action( 'megamenu_page_theme_editor', array( $this, 'theme_editor_page')); add_action( 'megamenu_page_tools', array( $this, 'tools_page')); add_action( 'megamenu_page_general_settings', array( $this, 'general_settings_page')); add_action( 'megamenu_page_menu_locations', array( $this, 'menu_locations_page')); add_action( 'admin_menu', array( $this, 'megamenu_themes_page') ); add_action( 'megamenu_admin_scripts', array( $this, 'enqueue_scripts' ) ); } /** * * @since 1.4 */ public function init() { if ( class_exists( "Mega_Menu_Style_Manager" ) ) { $style_manager = new Mega_Menu_Style_Manager(); $this->themes = $style_manager->get_themes(); $last_updated = max_mega_menu_get_last_updated_theme(); $preselected_theme = isset( $this->themes[ $last_updated ] ) ? $last_updated : 'default'; $theme_id = isset( $_GET['theme'] ) ? sanitize_text_field( $_GET['theme'] ) : $preselected_theme; if ( isset( $this->themes[ $theme_id ] ) ) { $this->id = $theme_id; } else { $this->id = $preselected_theme; } $this->active_theme = $this->themes[$this->id]; } } /** * * @since 2.4.1 */ public function ajax_save_theme() { check_ajax_referer( 'megamenu_save_theme' ); $style_manager = new Mega_Menu_Style_Manager(); $test = $style_manager->test_theme_compilation( $this->get_prepared_theme_for_saving() ); if ( is_wp_error( $test ) ) { wp_send_json_error( $test->get_error_message() ); } else { $this->save_theme(true); wp_send_json_success( "Saved" ); } wp_die(); } /** * * @since 2.4.1 */ public function get_prepared_theme_for_saving() { $submitted_settings = $_POST['settings']; if ( isset( $_POST['checkboxes'] ) ) { foreach ( $_POST['checkboxes'] as $checkbox => $value ) { if ( isset( $submitted_settings[ $checkbox ] ) ) { $submitted_settings[ $checkbox ] = 'on'; } else { $submitted_settings[ $checkbox ] = 'off'; } } } if ( is_numeric( $submitted_settings['responsive_breakpoint'] ) ) { $submitted_settings['responsive_breakpoint'] = $submitted_settings['responsive_breakpoint'] . "px"; } if ( isset( $submitted_settings['toggle_blocks'] ) ) { unset( $submitted_settings['toggle_blocks'] ); } $theme = array_map( 'esc_attr', $submitted_settings ); return $theme; } /** * Save changes to an exiting theme. * * @since 1.0 */ public function save_theme($is_ajax = false) { check_admin_referer( 'megamenu_save_theme' ); $theme = esc_attr( $_POST['theme_id'] ); $saved_themes = max_mega_menu_get_themes(); if ( isset( $saved_themes[ $theme ] ) ) { unset( $saved_themes[ $theme ] ); } $prepared_theme = $this->get_prepared_theme_for_saving(); $saved_themes[ $theme ] = $prepared_theme; max_mega_menu_save_themes( $saved_themes ); max_mega_menu_save_last_updated_theme( $theme ); do_action("megamenu_after_theme_save"); do_action("megamenu_delete_cache"); if ( ! $is_ajax ) { $this->redirect( admin_url( "admin.php?page=maxmegamenu_theme_editor&theme={$theme}&saved=true" ) ); return; } return $prepared_theme; } /** * Add a new menu location. * * @since 1.8 */ public function add_menu_location() { check_admin_referer( 'megamenu_add_menu_location' ); $locations = get_option( 'megamenu_locations' ); $next_id = $this->get_next_menu_location_id(); $new_menu_location_id = "max_mega_menu_" . $next_id; $locations[$new_menu_location_id] = "Max Mega Menu Location " . $next_id; update_option( 'megamenu_locations', $locations ); do_action("megamenu_after_add_menu_location"); $this->redirect( admin_url( 'admin.php?page=maxmegamenu_menu_locations&add_location=true' ) ); } /** * Delete a menu location. * * @since 1.8 */ public function delete_menu_location() { check_admin_referer( 'megamenu_delete_menu_location' ); $locations = get_option( 'megamenu_locations' ); $location_to_delete = esc_attr( $_GET['location'] ); if ( isset( $locations[ $location_to_delete ] ) ) { unset( $locations[ $location_to_delete ] ); update_option( 'megamenu_locations', $locations ); } do_action("megamenu_after_delete_menu_location"); do_action("megamenu_delete_cache"); $this->redirect( admin_url( 'admin.php?page=maxmegamenu_menu_locations&delete_location=true' ) ); } /** * Clear the CSS cache. * * @since 1.5 */ public function tools_clear_css_cache() { check_admin_referer( 'megamenu_clear_css_cache' ); do_action( 'megamenu_delete_cache' ); $this->redirect( admin_url( 'admin.php?page=maxmegamenu_tools&clear_css_cache=true' ) ); } /** * Deletes all Max Mega Menu data from the database * * @since 1.5 */ public function delete_data() { check_admin_referer( 'megamenu_delete_data' ); do_action("megamenu_delete_cache"); // delete options delete_option("megamenu_settings"); delete_option("megamenu_locations"); delete_option("megamenu_toggle_blocks"); delete_option("megamenu_version"); delete_option("megamenu_initial_version"); delete_option("megamenu_themes_last_updated"); delete_option("megamenu_multisite_share_themes"); // delete all widgets assigned to menus $widget_manager = new Mega_Menu_Widget_Manager(); if ( $mega_menu_widgets = $widget_manager->get_mega_menu_sidebar_widgets() ) { foreach ( $mega_menu_widgets as $widget_id ) { $widget_manager->delete_widget( $widget_id ); } } // delete all mega menu metadata stored against menu items delete_metadata( 'post', 0, '_megamenu', '', true ); // clear cache delete_transient( "megamenu_css" ); // delete custom themes max_mega_menu_delete_themes(); $this->redirect( admin_url( "admin.php?page=maxmegamenu_tools&delete_data=true" ) ); } /** * Save menu general settings. * * @since 1.0 */ public function save_settings() { check_admin_referer( 'megamenu_save_settings' ); if ( isset( $_POST['settings'] ) && is_array( $_POST['settings'] ) ) { $submitted_settings = apply_filters( "megamenu_submitted_settings", $_POST['settings'] ); $existing_settings = get_option( 'megamenu_settings' ); $new_settings = array_merge( (array)$existing_settings, $submitted_settings ); update_option( 'megamenu_settings', $new_settings ); } // update location description if ( isset( $_POST['location'] ) && is_array( $_POST['location'] ) ) { $locations = get_option('megamenu_locations'); $new_locations = array_merge( (array)$locations, $_POST['location'] ); update_option( 'megamenu_locations', $new_locations ); } delete_transient('megamenu_failed_to_write_css_to_filesystem'); do_action("megamenu_after_save_general_settings"); do_action("megamenu_delete_cache"); $url = isset( $_POST['_wp_http_referer'] ) ? $_POST['_wp_http_referer'] : admin_url( "admin.php?page=maxmegamenu&saved=true" ); $this->redirect( $url ); } /** * Duplicate an existing theme. * * @since 1.8 */ public function import_theme() { check_admin_referer( 'megamenu_import_theme' ); $this->init(); $import = json_decode( stripslashes( $_POST['data'] ), true ); if ( is_array( $import ) ) { $saved_themes = max_mega_menu_get_themes(); $next_id = $this->get_next_theme_id(); $import['title'] = $import['title'] . " " . __(' - Imported', 'megamenu'); $new_theme_id = "custom_theme_" . $next_id; $saved_themes[ $new_theme_id ] = $import; max_mega_menu_save_themes( $saved_themes ); do_action("megamenu_after_theme_import"); $this->redirect( admin_url( "admin.php?page=maxmegamenu_theme_editor&theme=" . $new_theme_id . "&created=true" ) ); } else { $this->redirect( admin_url( "admin.php?page=maxmegamenu_tools&theme_imported=false") ); } } /** * Duplicate an existing theme. * * @since 1.0 */ public function duplicate_theme() { check_admin_referer( 'megamenu_duplicate_theme' ); $this->init(); $theme = esc_attr( $_GET['theme_id'] ); $copy = $this->themes[$theme]; $saved_themes = max_mega_menu_get_themes(); $next_id = $this->get_next_theme_id(); $copy['title'] = $copy['title'] . " " . __('Copy', 'megamenu'); $new_theme_id = "custom_theme_" . $next_id; $saved_themes[ $new_theme_id ] = $copy; max_mega_menu_save_themes( $saved_themes ); do_action("megamenu_after_theme_duplicate"); $this->redirect( admin_url( "admin.php?page=maxmegamenu_theme_editor&theme={$new_theme_id}&duplicated=true") ); } /** * Delete a theme * * @since 1.0 */ public function delete_theme() { check_admin_referer( 'megamenu_delete_theme' ); $theme = esc_attr( $_GET['theme_id'] ); if ( $this->theme_is_being_used_by_location( $theme ) ) { $this->redirect( admin_url( "admin.php?page=maxmegamenu_theme_editor&theme={$theme}&deleted=false") ); return; } $saved_themes = max_mega_menu_get_themes(); if ( isset( $saved_themes[$theme] ) ) { unset( $saved_themes[$theme] ); } max_mega_menu_save_themes( $saved_themes ); do_action("megamenu_after_theme_delete"); do_action("megamenu_delete_cache"); $this->redirect( admin_url( "admin.php?page=maxmegamenu_theme_editor&theme=default&deleted=true") ); } /** * Revert a theme (only available for default themes, you can't revert a custom theme) * * @since 1.0 */ public function revert_theme() { check_admin_referer( 'megamenu_revert_theme' ); $theme = esc_attr( $_GET['theme_id'] ); $saved_themes = max_mega_menu_get_themes(); if ( isset( $saved_themes[$theme] ) ) { unset( $saved_themes[$theme] ); } max_mega_menu_save_themes( $saved_themes ); do_action("megamenu_after_theme_revert"); do_action("megamenu_delete_cache"); $this->redirect( admin_url( "admin.php?page=maxmegamenu_theme_editor&theme={$theme}&reverted=true") ); } /** * Create a new custom theme * * @since 1.0 */ public function create_theme() { check_admin_referer( 'megamenu_create_theme' ); $this->init(); $saved_themes = max_mega_menu_get_themes(); $next_id = $this->get_next_theme_id(); $new_theme_id = "custom_theme_" . $next_id; $style_manager = new Mega_Menu_Style_Manager(); $new_theme = $style_manager->get_default_theme(); $new_theme['title'] = "Custom {$next_id}"; $saved_themes[$new_theme_id] = $new_theme; max_mega_menu_save_themes( $saved_themes ); do_action("megamenu_after_theme_create"); $this->redirect( admin_url( "admin.php?page=maxmegamenu_theme_editor&theme={$new_theme_id}&created=true") ); } /** * Redirect and exit * * @since 1.8 */ public function redirect( $url ) { wp_redirect( $url ); exit; } /** * Returns the next available menu location ID * * @since 1.0 */ public function get_next_menu_location_id() { $last_id = 0; if ( $locations = get_option( "megamenu_locations" ) ) { foreach ( $locations as $key => $value ) { if ( strpos( $key, 'max_mega_menu_' ) !== FALSE ) { $parts = explode( "_", $key ); $menu_id = end( $parts ); if ($menu_id > $last_id) { $last_id = $menu_id; } } } } $next_id = $last_id + 1; return $next_id; } /** * Returns the next available custom theme ID * * @since 1.0 */ public function get_next_theme_id() { $last_id = 0; if ( $saved_themes = max_mega_menu_get_themes() ) { foreach ( $saved_themes as $key => $value ) { if ( strpos( $key, 'custom_theme' ) !== FALSE ) { $parts = explode( "_", $key ); $theme_id = end( $parts ); if ($theme_id > $last_id) { $last_id = $theme_id; } } } } $next_id = $last_id + 1; return $next_id; } /** * Checks to see if a certain theme is in use. * * @since 1.0 * @param string $theme */ public function theme_is_being_used_by_location( $theme ) { $settings = get_option( "megamenu_settings" ); if ( ! $settings ) { return false; } $locations = get_nav_menu_locations(); $menus = get_registered_nav_menus(); $theme_in_use_locations = array(); if ( count( $locations ) ) { foreach ( $locations as $location => $menu_id ) { if ( has_nav_menu( $location ) && max_mega_menu_is_enabled( $location ) && isset( $settings[ $location ]['theme'] ) && $settings[ $location ]['theme'] == $theme ) { $theme_in_use_locations[] = isset( $menus[ $location ] ) ? $menus[ $location ] : $location; } } if ( count( $theme_in_use_locations ) ) { return $theme_in_use_locations; } } return false; } /** * Adds the "Menu Themes" menu item and page. * * @since 1.0 */ public function megamenu_themes_page() { $svg = 'PHN2ZyB2ZXJzaW9uPSIxLjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEyNy4wMDAwMDBwdCIgaGVpZ2h0PSIxMjcuMDAwMDAwcHQiIHZpZXdCb3g9IjAgMCAxMjcuMDAwMDAwIDEyNy4wMDAwMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIG1lZXQiPgogICAgICAgICAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMDAwMDAwLDEyNy4wMDAwMDApIHNjYWxlKDAuMTAwMDAwLC0wLjEwMDAwMCkiIGZpbGw9IiMwMDAwMDAiIHN0cm9rZT0ibm9uZSI+CiAgICAgICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zMzAgMTEyNyBsLTI0NSAtMTQzIC03IC0xODAgYy01IC05OCAtNyAtMjUzIC01IC0zNDQgbDIgLTE2NSAxMzAKICAgICAgICAgICAgICAgICAgICAgICAgLTc2IGMyOTUgLTE3MyAzNDUgLTIwNCAzNDUgLTIxMSAwIC00IDI0IC04IDU0IC04IDQ4IDAgNjUgNyAxNjcgNjYgMjIzIDEyOQogICAgICAgICAgICAgICAgICAgICAgICAzNzYgMjI0IDM5MCAyNDAgMTggMjEgMjYgNTkzIDEwIDYzNyAtMTIgMzAgLTczIDcyIC0yNzYgMTkwIC03MSA0MiAtMTUyIDkwCiAgICAgICAgICAgICAgICAgICAgICAgIC0xNzkgMTA2IC0zNiAyMyAtNjAgMzEgLTk1IDMxIC00MSAwIC03MiAtMTYgLTI5MSAtMTQzeiBtNDEwIC03NyBjMTMxIC03NgogICAgICAgICAgICAgICAgICAgICAgICAxNDEgLTg1IDExNSAtMTA1IC00MyAtMzEgLTIyMSAtMTI1IC0yMzkgLTEyNSAtMjEgMCAtMjE3IDExMiAtMjM1IDEzNCAtOCAxMAogICAgICAgICAgICAgICAgICAgICAgICAtNiAxNyA3IDI4IDM3IDMyIDIwNyAxMjggMjI2IDEyOCAxMiAwIDY4IC0yNyAxMjYgLTYweiBtLTM2MSAtMjc5IGM4OCAtNTAKICAgICAgICAgICAgICAgICAgICAgICAgMTgxIC05OSAyMDcgLTExMCBsNDcgLTIxIDEyMSA2OSBjMTY4IDk2IDI1NSAxNDEgMjcyIDE0MSAxMiAwIDE0IC0zOCAxNCAtMjI4CiAgICAgICAgICAgICAgICAgICAgICAgIGwwIC0yMjggLTc3IC00NyAtNzggLTQ3IC03IDE0NiBjLTMgODAgLTggMTQ3IC0xMCAxNDkgLTIgMiAtNTMgLTI1IC0xMTMgLTYwCiAgICAgICAgICAgICAgICAgICAgICAgIC02MSAtMzUgLTExOSAtNjQgLTEyOSAtNjUgLTExIDAgLTcwIDI3IC0xMzIgNjAgLTYyIDMzIC0xMTUgNjAgLTExNyA2MCAtMyAwCiAgICAgICAgICAgICAgICAgICAgICAgIC04IC02MyAtMTIgLTE0MCAtNCAtNzcgLTExIC0xNDAgLTE2IC0xNDAgLTQgMCAtMzkgMTkgLTc4IDQyIGwtNzAgNDIgLTMgMTI2CiAgICAgICAgICAgICAgICAgICAgICAgIGMtNCAxODIgMSAzNDAgMTIgMzQwIDUgMCA4MSAtNDAgMTY5IC04OXogbTE5NSAtNDU4IGw1NSAtMjcgNDEgMjggYzIzIDE1IDQ4CiAgICAgICAgICAgICAgICAgICAgICAgIDI1IDU2IDIyIDE1IC02IDIwIC03OSA4IC0xMTEgLTcgLTE4IC05NCAtNjUgLTEyMSAtNjUgLTIyIDAgLTgzIDM1IC0xMDAgNTgKICAgICAgICAgICAgICAgICAgICAgICAgLTE4IDIyIC0xNSAxMjIgMyAxMjIgMiAwIDI4IC0xMiA1OCAtMjd6Ii8+CiAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgPC9zdmc+'; $icon = "data:image/svg+xml;base64," . $svg; $page = add_menu_page( __('Max Mega Menu', 'megamenu'), __('Mega Menu', 'megamenu'), 'edit_theme_options', 'maxmegamenu', array($this, 'page'), $icon ); $tabs = apply_filters("megamenu_menu_tabs", array( 'general_settings' => __("General Settings", "megamenu"), 'theme_editor' => __("Menu Themes", "megamenu"), 'menu_locations' => __("Menu Locations", "megamenu"), 'tools' => __("Tools", "megamenu") )); foreach ( $tabs as $key => $title ) { if ( $key == 'general_settings') { add_submenu_page( 'maxmegamenu', __('Max Mega Menu', 'megamenu') . ' - ' . $title, $title, 'edit_theme_options', 'maxmegamenu', array($this, 'page') ); } else { add_submenu_page( 'maxmegamenu', __('Max Mega Menu', 'megamenu') . ' - ' . $title, $title, 'edit_theme_options', 'maxmegamenu_' . $key, array($this, 'page') ); } } } /** * Content for 'Settings' tab * * @since 1.4 */ public function general_settings_page( $saved_settings ) { $css = isset( $saved_settings['css'] ) ? $saved_settings['css'] : 'fs'; $mobile_second_click = isset( $saved_settings['second_click'] ) ? $saved_settings['second_click'] : 'close'; $mobile_behaviour = isset( $saved_settings['mobile_behaviour'] ) ? $saved_settings['mobile_behaviour'] : 'standard'; $descriptions = isset( $saved_settings['descriptions'] ) ? $saved_settings['descriptions'] : 'disabled'; $unbind = isset( $saved_settings['unbind'] ) ? $saved_settings['unbind'] : 'enabled'; $prefix = isset( $saved_settings['prefix'] ) ? $saved_settings['prefix'] : 'enabled'; $locations = get_registered_nav_menus(); ?> <div class='menu_settings menu_settings_general_settings'> <form action="<?php echo admin_url('admin-post.php'); ?>" method="post"> <input type="hidden" name="action" value="megamenu_save_settings" /> <?php wp_nonce_field( 'megamenu_save_settings' ); ?> <h3 class='first'><?php _e("General Settings", "megamenu"); ?></h3> <table> <tr> <td class='mega-name'> <?php _e("Click Event Behaviour", "megamenu"); ?> <div class='mega-description'> <?php _e("Define what should happen when the event is set to 'click'. This also applies to mobiles.", "megamenu"); ?> </div> </td> <td class='mega-value'> <select name='settings[second_click]'> <option value='close' <?php echo selected( $mobile_second_click == 'close'); ?>><?php _e("First click will open a sub menu, second click will close the sub menu.", "megamenu"); ?></option> <option value='go' <?php echo selected( $mobile_second_click == 'go'); ?>><?php _e("First click will open a sub menu, second click will follow the link.", "megamenu"); ?></option> <select> <div class='mega-description'> </div> </td> </tr> <tr> <td class='mega-name'> <?php _e("Mobile Menu Behaviour", "megamenu"); ?> <div class='mega-description'> <?php _e("Define the sub menu toggle behaviour for the mobile menu.", "megamenu"); ?> </div> </td> <td class='mega-value'> <select name='settings[mobile_behaviour]'> <option value='standard' <?php echo selected( $mobile_behaviour == 'standard'); ?>><?php _e("Standard - Open sub menus will remain open until closed by the user.", "megamenu"); ?></option> <option value='accordion' <?php echo selected( $mobile_behaviour == 'accordion'); ?>><?php _e("Accordion - Open sub menus will automatically close when another one is opened.", "megamenu"); ?></option> <select> <div class='mega-description'> </div> </td> </tr> <tr> <td class='mega-name'> <?php _e("CSS Output", "megamenu"); ?> <div class='mega-description'> </div> </td> <td class='mega-value'> <select name='settings[css]' id='mega_css'> <option value='fs' <?php echo selected( $css == 'fs'); ?>><?php _e("Save to filesystem", "megamenu"); ?> <?php if ( get_transient('megamenu_failed_to_write_css_to_filesystem') ) { echo " " . __("(Action required: Check upload folder permissions)", "megamenu"); } ?> </option> <option value='head' <?php echo selected( $css == 'head'); ?>><?php _e("Output in <head>", "megamenu"); ?></option> <option value='disabled' <?php echo selected( $css == 'disabled'); ?>><?php _e("Don't output CSS", "megamenu"); ?></option> <select> <div class='mega-description'> <div class='fs' style='display: <?php echo $css == 'fs' ? 'block' : 'none' ?>'><?php _e("CSS will be saved to wp-content/uploads/maxmegamenu/style.css and enqueued from there.", "megamenu"); ?></div> <div class='head' style='display: <?php echo $css == 'head' ? 'block' : 'none' ?>'><?php _e("CSS will be loaded from the cache in a <style> tag in the <head> of the page.", "megamenu"); ?></div> <div class='disabled' style='display: <?php echo $css == 'disabled' ? 'block' : 'none' ?>'> <?php _e("CSS will not be output, you must enqueue the CSS for the menu manually.", "megamenu"); ?> <div class='fail'><?php _e("Selecting this option will effectively disable the theme editor and many of the features available in Max Mega Menu and Max Mega Menu Pro. Only enable this option if you fully understand the consequences.", "megamenu"); ?> </div> </div> </td> </tr> <tr> <td class='mega-name'> <?php _e("Menu Item Descriptions", "megamenu"); ?> <div class='mega-description'> <?php _e("Enable output of menu item descriptions", "megamenu"); ?> </div> </td> <td class='mega-value'> <select name='settings[descriptions]'> <option value='disabled' <?php echo selected( $descriptions == 'disabled'); ?>><?php _e("Disabled", "megamenu"); ?></option> <option value='enabled' <?php echo selected( $descriptions == 'enabled'); ?>><?php _e("Enabled", "megamenu"); ?></option> <select> <div class='mega-description'> </div> </td> </tr> <tr> <td class='mega-name'> <?php _e("Unbind JavaScript Events", "megamenu"); ?> <div class='mega-description'> <?php _e("To avoid conflicts with theme menu systems, JavaScript events which have been added to menu items will be removed by default.", "megamenu"); ?> </div> </td> <td class='mega-value'> <select name='settings[unbind]'> <option value='disabled' <?php echo selected( $unbind == 'disabled'); ?>><?php _e("No", "megamenu"); ?></option> <option value='enabled' <?php echo selected( $unbind == 'enabled'); ?>><?php _e("Yes", "megamenu"); ?></option> <select> <div class='mega-description'> </div> </td> </tr> <tr> <td class='mega-name'> <?php _e("Prefix Menu Item Classes", "megamenu"); ?> <div class='mega-description'> <?php _e("Prefix custom menu item classes with 'mega-'?", "megamenu"); ?> </div> </td> <td class='mega-value'> <select name='settings[prefix]'> <option value='disabled' <?php echo selected( $prefix == 'disabled'); ?>><?php _e("No", "megamenu"); ?></option> <option value='enabled' <?php echo selected( $prefix == 'enabled'); ?>><?php _e("Yes", "megamenu"); ?></option> <select> <div class='mega-description'> </div> </td> </tr> <tr> <td class='mega-name'> <?php _e("Active Menu Instances", "megamenu"); ?> <div class='mega-description'> <?php _e("Some themes will output a menu location multiple times on the same page. For example, your theme may output a menu location once for the main menu, then again for the mobile menu. This setting can be used to make sure Max Mega Menu is only applied to one of those instances.", "megamenu"); ?> </div> </td> <td class='mega-value mega-instances'> <?php if (count($locations)): ?> <table> <tr> <th><?php _e("Menu Location", "megamenu"); ?></th><th><?php _e("Active Instance", "megamenu"); ?></th> </tr> <?php foreach( $locations as $location => $description ): ?> <?php if (max_mega_menu_is_enabled($location)): ?> <?php $active_instance = isset($saved_settings['instances'][$location]) ? $saved_settings['instances'][$location] : 0; ?> <tr> <td><?php echo $description; ?></td><td><input type='text' name='settings[instances][<?php echo $location ?>]' value='<?php echo esc_attr( $active_instance ); ?>' /></td> </tr> <?php endif; ?> <?php endforeach; ?> </table> <div class='mega-description'><?php _e("0: Apply to all instances. 1: Apply to first instance. 2: Apply to second instance", "megamenu"); ?>…</div> <?php endif; ?> </td> </tr> </table> <?php do_action( "megamenu_general_settings", $saved_settings ); ?> <?php submit_button(); ?> </form> </div> <?php } /** * Content for 'Settings' tab * * @since 1.4 */ public function menu_locations_page( $saved_settings ) { $all_locations = get_registered_nav_menus(); // PolyLang - remove auto created/translated menu locations if ( function_exists( 'pll_default_language' ) ) { $default_lang = pll_default_language( 'name' ); foreach ( $all_locations as $loc => $description ) { if ( false !== strpos( $loc, '___' ) ) { // Remove locations created by Polylang unregister_nav_menu( $loc ); } else { // Remove the language name appended to the original locations register_nav_menu( $loc, str_replace( ' ' . $default_lang, '', $description ) ); } } $all_locations = get_registered_nav_menus(); } $locations = array(); $custom_locations = get_option( 'megamenu_locations' ); if ( is_array( $custom_locations ) ) { $all_locations = array_merge( $custom_locations, $all_locations ); } if ( count( $all_locations ) ) { $megamenu_locations = array(); // reorder locations so custom MMM locations are listed at the bottom foreach ( $all_locations as $location => $val ) { if ( strpos( $location, 'max_mega_menu_' ) === FALSE ) { $locations[$location] = $val; } else { $megamenu_locations[$location] = $val; } } $locations = array_merge( $locations, $megamenu_locations ); } ?> <div class='menu_settings menu_settings_menu_locations'> <form action="<?php echo admin_url('admin-post.php'); ?>" method="post"> <input type="hidden" name="action" value="megamenu_save_settings" /> <?php wp_nonce_field( 'megamenu_save_settings' ); ?> <h3 class='first'><?php _e("Menu Locations", "megamenu"); ?></h3> <table> <tr> <td class='mega-name'> <?php _e("Registered Menu Locations", "megamenu"); ?> <div class='mega-description'><?php _e("This is an overview of the menu locations supported by your theme. You can enable Max Mega Menu and adjust the settings for a specific menu location by going to Appearance > Menus.", "megamenu"); ?></div> </td> <td class='mega-value'> <p> <?php if ( ! count($locations)) { _e("Your theme does not natively support menus, but you can add a new menu location using Max Mega Menu and display the menu using the Max Mega Menu widget or shortcode.", "megamenu"); } else { echo sprintf( _n("Your theme supports %s menu location.", "Your theme supports %s menu locations.", count($locations), "megamenu"), count($locations) ); } ?> </p> <?php if ( count ( $locations ) ) { echo "<div class='accordion-container'>"; echo "<ul class='outer-border'>"; foreach ( $locations as $location => $description ) { $menu_id = $this->get_menu_id_for_location( $location ); $is_custom_location = strpos( $location, 'max_mega_menu_' ) !== FALSE; ?> <li class='control-section accordion-section mega-location'> <h4 class='accordion-section-title hndle'> <?php echo esc_attr( $description ) ?> <?php if ($menu_id) { echo "<div class='mega-assigned-menu'>"; echo "<a href='" . admin_url("nav-menus.php?action=edit&menu={$menu_id}") . "'>" . $this->get_menu_name_for_location( $location ) . "</a>"; echo "</div>"; } ?> </h4> <div class='accordion-section-content'> <?php if ( ! max_mega_menu_is_enabled( $location ) ): ?> <div class='notice fail'><p><?php _e("Max Mega Menu is not enabled for this menu location. If you wish to use Max Mega Menu for this location you must enable it under Appearance > Menus.", "megamenu"); ?></p></div> <?php endif; ?> <table> <?php if ( $is_custom_location ) : ?> <tr> <td class='mega-name'> <?php _e("Location Description", "megamenu"); ?> <div class='mega-description'><?php _e("Change the name of the location.", "megamenu"); ?></div> </td> <td class='mega-value wide'> <input type='text' name='location[<?php echo $location ?>]' value='<?php echo esc_attr( $description ); ?>' /> </td> </tr> <?php endif; ?> </table> <h5><?php _e("Menu Display Options", "megamenu"); ?></h5> <?php if ( ! $is_custom_location ) : ?> <p><?php _e("These options are for advanced users only. Your theme should already include the code required to display this menu on your site.", "megamenu"); ?> <?php endif; ?> <table> <tr> <td class='mega-name'> <?php _e("PHP Function", "megamenu"); ?> <div class='mega-description'><?php _e("For use in a theme template (usually header.php)", "megamenu"); ?></div> </td> <td class='mega-value'> <textarea readonly="readonly"><?php wp_nav_menu( array( 'theme_location' => '<?php echo $location ?>' ) ); ?></textarea> </td> </tr> <tr> <td class='mega-name'> <?php _e("Shortcode", "megamenu"); ?> <div class='mega-description'><?php _e("For use in a post or page.", "megamenu"); ?></div> </td> <td class='mega-value'> <textarea readonly="readonly">[maxmegamenu location=<?php echo $location ?>]</textarea> </td> </tr> <tr> <td class='mega-name'> <?php _e("Widget", "megamenu"); ?> <div class='mega-description'><?php _e("For use in a widget area.", "megamenu"); ?></div> </td> <td class='mega-value'> <?php _e("Add the 'Max Mega Menu' widget to a widget area.", "megamenu") ?> </td> </tr> </table> <?php if ( $is_custom_location ) { $delete_location_url = esc_url( add_query_arg( array( 'action' => 'megamenu_delete_menu_location', 'location' => $location ), wp_nonce_url( admin_url("admin-post.php"), 'megamenu_delete_menu_location' ) ) ); echo '<div class="megamenu_submit"><div class="mega_left">'; submit_button(); echo '</div><div class="mega_right">'; echo "<a class='confirm mega-delete' href='{$delete_location_url}'>" . __("Delete location", "megamenu") . "</a>"; echo '</div></div>'; } ?> </div> </li> <?php } echo "</div>"; echo "</div>"; } $add_location_url = esc_url( add_query_arg( array( 'action'=>'megamenu_add_menu_location' ), wp_nonce_url( admin_url("admin-post.php"), 'megamenu_add_menu_location' ) ) ); echo "<br /><p><a class='button button-secondary' href='{$add_location_url}'>" . __("Add another menu location", "megamenu") . "</a></p>"; ?> </td> </tr> </table> <?php do_action( "megamenu_menu_locations", $saved_settings ); ?> </form> </div> <?php } /** * Returns the menu ID for a specified menu location, defaults to 0 * * @since 1.8 * @param string $location */ private function get_menu_id_for_location( $location ) { $locations = get_nav_menu_locations(); $id = isset( $locations[ $location ] ) ? $locations[ $location ] : 0; return $id; } /** * Returns the menu name for a specified menu location * * @since 1.8 * @param string $location */ private function get_menu_name_for_location( $location ) { $id = $this->get_menu_id_for_location( $location ); $menus = wp_get_nav_menus(); foreach ( $menus as $menu ) { if ( $menu->term_id == $id ) { return $menu->name; } } return false; } /** * Content for 'Tools' tab * * @since 1.4 */ public function tools_page( $saved_settings ) { ?> <div class='menu_settings menu_settings_tools'> <h3 class='first'><?php _e("Tools", "megamenu"); ?></h3> <table> <tr> <td class='mega-name'> <?php _e("Cache", "megamenu"); ?> <div class='mega-description'><?php _e("The CSS for your menu is updated each time a menu or a menu theme is changed. You can force the menu CSS to be updated using this tool.", "megamenu"); ?></div> </td> <td class='mega-value'> <form action="<?php echo admin_url('admin-post.php'); ?>" method="post"> <?php wp_nonce_field( 'megamenu_clear_css_cache' ); ?> <input type="hidden" name="action" value="megamenu_clear_css_cache" /> <input type='submit' class='button button-secondary' value='<?php _e("Clear CSS Cache", "megamenu"); ?>' /> <?php if ( get_transient( 'megamenu_css_last_updated' ) ): ?> <p><em><small><?php echo sprintf(__("The menu CSS was last updated on %s", "megamenu"), date('l jS F Y H:i:s', get_transient('megamenu_css_last_updated') ) ); ?><small><em></p> <?php endif; ?> </form> </td> </tr> <tr> <td class='mega-name'> <?php _e("Export Theme", "megamenu"); ?> <div class='mega-description'><?php _e("Export a menu theme", "megamenu"); ?></div> </td> <td class='mega-value'> <form method="post" action="<?php echo admin_url( "admin.php?page=maxmegamenu_tools") ?>"> <?php if ( isset( $_POST['theme_export'] ) ) { $style_manager = new Mega_Menu_Style_Manager(); $default_theme = $style_manager->get_default_theme(); $theme_to_export = $_POST['theme_export']; if ( isset( $this->themes[ $theme_to_export ] ) ) { $theme_to_export = $this->themes[ $theme_to_export ]; $diff = array(); foreach ( $default_theme as $key => $value ) { if ( isset( $theme_to_export[$key] ) && $theme_to_export[$key] != $value || $key == 'title') { $diff[$key] = $theme_to_export[$key]; } } if ( isset( $_POST['format'] ) && $_POST['format'] == 'json' ) { echo "<p>" . __("Log into the site you wish to import the theme to. Go to Mega Menu > Tools and paste this into the 'Import Theme' text area:", "megamenu") . "</p>"; echo "<textarea>" . htmlentities( json_encode( $diff ) ) . "</textarea>"; } else { $key = strtolower( str_replace(" ", "_", $theme_to_export['title'] ) ); $key .= "_" . time(); echo "<p>" . __("Paste this code into your themes functions.php file:", "megamenu") . "</p>"; echo '<textarea>'; echo 'function megamenu_add_theme_' . $key . '($themes) {'; echo "\n" . ' $themes["' . $key .'"] = array('; foreach ($diff as $theme_key => $value) { echo "\n '" . $theme_key . "' => '" . $value . "',"; } echo "\n" . ' );'; echo "\n" . ' return $themes;'; echo "\n" . '}'; echo "\n" . 'add_filter("megamenu_themes", "megamenu_add_theme_' . $key . '");'; echo '</textarea>'; } } } else { echo "<select name='theme_export'>"; foreach ( $this->themes as $id => $theme ) { echo "<option value='{$id}'>{$theme['title']}</option>"; } echo "</select>"; echo "<h4>" . __("Export Format", "megamenu") . "</h4>"; echo "<label><input value='json' type='radio' checked='checked' name='format'>" . __("JSON - I want to import this theme into another site I'm developing", "megamenu") . "</label>"; echo "<label><input value='php' type='radio' name='format'>" . __("PHP - I want to distribute this Menu Theme in a WordPress Theme I'm developing", "megamenu") . "<label>"; echo "<input type='submit' name='export' class='button button-secondary' value='" . __("Export Theme", "megamenu") . "' />"; } ?> </form> </td> </tr> <tr> <td class='mega-name'> <?php _e("Import Theme", "megamenu"); ?> <div class='mega-description'><?php _e("Import a menu theme in JSON format", "megamenu"); ?></div> </td> <td class='mega-value'> <form action="<?php echo admin_url('admin-post.php'); ?>" method="post"> <?php wp_nonce_field( 'megamenu_import_theme' ); ?> <input type="hidden" name="action" value="megamenu_import_theme" /> <textarea name='data'></textarea> <input type='submit' class='button button-secondary' value='<?php _e("Import Theme", "megamenu"); ?>' /> </form> </td> </tr> <tr> <td class='mega-name'> <?php _e("Plugin Data", "megamenu"); ?> <div class='mega-description'><?php _e("Delete all saved Max Mega Menu plugin data from the database. Use with caution!", "megamenu"); ?></div> </td> <td class='mega-value'> <form action="<?php echo admin_url('admin-post.php'); ?>" method="post"> <?php wp_nonce_field( 'megamenu_delete_data' ); ?> <input type="hidden" name="action" value="megamenu_delete_data" /> <input type='submit' class='button button-secondary confirm' value='<?php _e("Delete Data", "megamenu"); ?>' /> </form> </td> </tr> </table> </div> <?php } /** * Main settings page wrapper. * * @since 1.4 */ public function page() { $tab = isset( $_GET['page'] ) ? substr( $_GET['page'], 12 ) : false; // backwards compatibility if ( isset ( $_GET['tab'] ) ) { $tab = $_GET['tab']; } if ( ! $tab ) { $tab = 'general_settings'; } $header_links = apply_filters( "megamenu_header_links", array( 'homepage' => array( 'url' => 'https://www.megamenu.com/?utm_source=free&utm_medium=settings&utm_campaign=pro', 'target' => '_mmmpro', 'text' => __("Homepage", "megamenu"), 'class' => '' ), 'documentation' => array( 'url' => 'https://www.megamenu.com/documentation/installation/?utm_source=free&utm_medium=settings&utm_campaign=pro', 'text' => __("Documentation", "megamenu"), 'target' => '_mmmpro', 'class' => '' ), 'troubleshooting' => array( 'url' => 'https://www.megamenu.com/articles/troubleshooting/?utm_source=free&utm_medium=settings&utm_campaign=pro', 'text' => __("Troubleshooting", "megamenu"), 'target' => '_mmmpro', 'class' => '' ) ) ); if ( ! is_plugin_active('megamenu-pro/megamenu-pro.php') ) { //$header_links['rate_us'] = array( // 'url' => 'https://wordpress.org/support/plugin/megamenu/reviews/#new-post', // 'text' => __("If you like this plugin, please vote and support us!", "megamenu"), // 'target' => '_blank', // 'class' => 'mega-star' //); $header_links['pro'] = array( 'url' => 'https://www.megamenu.com/upgrade/?utm_source=free&utm_medium=settings&utm_campaign=pro', 'target' => '_mmmpro', 'text' => __("Upgrade to Pro", "megamenu"), 'class' => 'mega-highlight' ); } $versions = apply_filters( "megamenu_versions", array( 'core' => array( 'version' => MEGAMENU_VERSION, 'text' => __("Core version", "megamenu") ), 'pro' => array( 'version' => "<a href='https://www.megamenu.com/upgrade/?utm_source=free&utm_medium=settings&utm_campaign=pro' target='_mmmpro'>not installed</a>", 'text' => __("Pro extension", "megamenu") ) ) ); ?> <div class='megamenu_outer_wrap'> <div class='megamenu_header_top'> <ul> <?php foreach ( $header_links as $id => $data ) { echo "<li class='{$data['class']}'><a href='{$data['url']}' target='{$data['target']}'>{$data['text']}"; echo "</a>"; echo "</li>"; } ?> </ul> </div> <div class='megamenu_header'> <div class='megamenu_header_left'> <h2><?php _e("Max Mega Menu", "megamenu"); ?></h2> <div class='version'> <?php $total = count( $versions ); $count = 0; $separator = ' - '; foreach ( $versions as $id => $data ) { echo $data['text'] . ": <b>" . $data['version'] . "</b>"; $count = $count + 1; if ( $total > 0 && $count != $total ) { echo $separator; } } ?> </div> </div> </div> <div class='megamenu_wrap'> <div class='megamenu_right'> <?php $this->print_messages(); ?> <?php $saved_settings = get_option("megamenu_settings"); if ( has_action( "megamenu_page_{$tab}" ) ) { do_action( "megamenu_page_{$tab}", $saved_settings ); } else { do_action( "megamenu_page_general_settings", $saved_settings ); } ?> </div> </div> <div class='megamenu_left'> <ul> <?php $tabs = apply_filters("megamenu_menu_tabs", array( 'general_settings' => __("General Settings", "megamenu"), 'theme_editor' => __("Menu Themes", "megamenu"), 'menu_locations' => __("Menu Locations", "megamenu"), 'tools' => __("Tools", "megamenu") )); foreach ( $tabs as $key => $title ) { $class = $tab == $key ? 'active' : ''; if ( $key == 'general_settings' ) { $args = array( 'page' => 'maxmegamenu' ); } else { $args = array( 'page' => 'maxmegamenu_' . $key ); } $url = esc_url( add_query_arg( $args, admin_url("admin.php") ) ); echo "<li><a class='{$class}' href='{$url}'>{$title}</a></li>"; } ?> </ul> </div> </div> <?php } /** * Display messages to the user * * @since 1.0 */ public function print_messages() { $this->init(); $style_manager = new Mega_Menu_Style_Manager(); $test = $style_manager->test_theme_compilation( $this->active_theme ); if ( is_wp_error( $test ) ) { echo "<p class='fail'>" . $test->get_error_message() . "</p>"; } if ( isset( $_GET['deleted'] ) && $_GET['deleted'] == 'false' ) { echo "<p class='fail'>" . __("Failed to delete theme. The theme is in use by a menu.", "megamenu") . "</p>"; } if ( isset( $_GET['clear_css_cache'] ) && $_GET['clear_css_cache'] == 'true' ) { echo "<p class='success'>"; echo __("The cache has been cleared and the menu CSS has been regenerated.", "megamenu"); $active_plugins = max_mega_menu_get_active_caching_plugins(); if ( count( $active_plugins ) ) { echo "<br /><br />"; echo __("You may also need to clear the cache for any Caching, Minification or CDN plugin you have installed.", "megamenu"); } echo "</p>"; } if ( isset( $_GET['delete_data'] ) && $_GET['delete_data'] == 'true' ) { echo "<p class='success'>" . __("All plugin data removed", "megamenu") . "</p>"; } if ( isset( $_GET['deleted'] ) && $_GET['deleted'] == 'true' ) { echo "<p class='success'>" . __("Theme Deleted", "megamenu") . "</p>"; } if ( isset( $_GET['duplicated'] ) ) { echo "<p class='success'>" . __("Theme Duplicated", "megamenu") . "</p>"; } if ( isset( $_GET['saved'] ) ) { echo "<p class='success'>" . __("Changes Saved", "megamenu") . "</p>"; } if ( isset( $_GET['reverted'] ) ) { echo "<p class='success'>" . __("Theme Reverted", "megamenu") . "</p>"; } if ( isset( $_GET['created'] ) ) { echo "<p class='success'>" . __("New Theme Created. To apply this theme to a menu, go to <i>Appearance > Menus > Max Mega Menu Settings</i> and select this theme from the 'Theme' dropdown.", "megamenu") . "</p>"; } if ( isset( $_GET['add_location'] ) ) { echo "<p class='success'>" . __("New Menu Location Created", "megamenu") . "</p>"; } if ( isset( $_GET['delete_location'] ) ) { echo "<p class='success'>" . __("Menu Location Deleted", "megamenu") . "</p>"; } if ( isset( $_GET['theme_imported'] ) && $_GET['theme_imported'] == 'false' ) { echo "<p class='fail'>" . __("Theme Import Failed", "megamenu") . "</p>"; } if ( isset( $_POST['theme_export'] ) ) { echo "<p class='success'>" . __("Theme Exported", "megamenu") . "</p>"; } if ( is_plugin_active('clearfy/clearfy.php') ) { if ( $clearfy_options = get_option('wbcr_clearfy_cache_options') ) { if ( $clearfy_options['disable_dashicons'] == true ) { echo "<p class='fail'>" . __("Please enable Dashicons in the Clearfy plugin options. Max Mega Menu requires Dashicons.", "megamenu") . "</p>"; } } } do_action("megamenu_print_messages"); } /** * Lists the available themes * * @since 1.0 */ public function theme_selector() { $list_items = "<select id='theme_selector'>"; foreach ( $this->themes as $id => $theme ) { $locations = $this->theme_is_being_used_by_location( $id ); $selected = $id == $this->id ? 'selected=selected' : ''; $list_items .= "<option {$selected} value='" . admin_url("admin.php?page=maxmegamenu_theme_editor&theme={$id}") . "'>"; $list_items .= $theme['title']; if ( is_array( $locations ) ) { $list_items .= " (" . implode( ", ", $locations ) . ")"; } $list_items .= "</option>"; } return $list_items .= "</select>"; } /** * Checks to see if a given string contains any of the provided search terms * * @param srgin $key * @param array $needles * @since 1.0 */ private function string_contains( $key, $needles ) { foreach ( $needles as $needle ) { if ( strpos( $key, $needle ) !== FALSE ) { return true; } } return false; } /** * Displays the theme editor form. * * @since 1.0 */ public function theme_editor_page( $saved_settings ) { $this->init(); $create_url = esc_url( add_query_arg( array( 'action'=>'megamenu_add_theme' ), wp_nonce_url( admin_url("admin-post.php"), 'megamenu_create_theme' ) ) ); $duplicate_url = esc_url( add_query_arg( array( 'action'=>'megamenu_duplicate_theme', 'theme_id' => $this->id ), wp_nonce_url( admin_url("admin-post.php"), 'megamenu_duplicate_theme' ) ) ); $delete_url = esc_url( add_query_arg( array( 'action'=>'megamenu_delete_theme', 'theme_id' => $this->id ), wp_nonce_url( admin_url("admin-post.php"), 'megamenu_delete_theme' ) ) ); $revert_url = esc_url( add_query_arg( array( 'action'=>'megamenu_revert_theme', 'theme_id' => $this->id ), wp_nonce_url( admin_url("admin-post.php"), 'megamenu_revert_theme' ) ) ); ?> <div class='menu_settings menu_settings_menu_themes'> <div class='theme_selector'> <?php _e("Select theme to edit", "megamenu"); ?> <?php echo $this->theme_selector(); ?> <?php _e("or", "megamenu"); ?> <a href='<?php echo $create_url ?>'><?php _e("create a new theme", "megamenu"); ?></a> <?php _e("or", "megamenu"); ?> <a href='<?php echo $duplicate_url ?>'><?php _e("duplicate this theme", "megamenu"); ?></a> </div> <h3 class='editing_theme'><?php echo __("Editing theme", "megamenu") . ": " . $this->active_theme['title']; ?></h3> <?php $saved_settings = get_option("megamenu_settings"); if (isset($saved_settings['css']) && $saved_settings['css'] == 'disabled') { ?> <div class='fail'><?php _e("CSS Output (under Mega Menu > General Settings) has been disabled. Therefore, changes made within the theme editor will not be applied to your menu.", "megamenu"); ?></div> <?php } $locations = $this->theme_is_being_used_by_location( $this->id ); if ( ! $locations && ! isset($_GET['created'] ) ) { ?> <div class='warning'><?php _e("This menu theme is not currently active as it has not been applied to any menu locations. You may wish to check you are editing the correct menu theme - you can choose a different theme to edit using the 'Select theme to edit' selector above. Alternatively, to apply this theme to a menu go to <i>Appearance > Menus > Max Mega Menu Settings</i> and select this theme from the 'Theme' dropdown.", "megamenu"); ?></div> <?php } ?> <form action="<?php echo admin_url('admin-post.php'); ?>" method="post" class="theme_editor"> <input type="hidden" name="theme_id" value="<?php echo esc_attr( $this->id ); ?>" /> <input type="hidden" name="action" value="megamenu_save_theme" /> <?php wp_nonce_field( 'megamenu_save_theme' ); ?> <?php $settings = apply_filters( 'megamenu_theme_editor_settings', array( 'general' => array( 'title' => __( "General Settings", "megamenu" ), 'settings' => array( 'title' => array( 'priority' => 10, 'title' => __( "Theme Title", "megamenu" ), 'description' => "", 'settings' => array( array( 'title' => "", 'type' => 'freetext', 'key' => 'title' ) ) ), 'arrow' => array( 'priority' => 20, 'title' => __( "Arrow", "megamenu" ), 'description' => __( "Select the arrow styles.", "megamenu" ), 'settings' => array( array( 'title' => __( "Up", "megamenu" ), 'type' => 'arrow', 'key' => 'arrow_up' ), array( 'title' => __( "Down", "megamenu" ), 'type' => 'arrow', 'key' => 'arrow_down' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'arrow', 'key' => 'arrow_left' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'arrow', 'key' => 'arrow_right' ) ) ), 'line_height' => array( 'priority' => 30, 'title' => __( "Line Height", "megamenu" ), 'description' => __( "Set the general line height to use in the sub menu contents.", "megamenu" ), 'settings' => array( array( 'title' => "", 'type' => 'freetext', 'key' => 'line_height' ) ) ), 'z_index' => array( 'priority' => 40, 'title' => __( "Z Index", "megamenu" ), 'description' => __( "Set the z-index to ensure the sub menus appear ontop of other content.", "megamenu" ), 'settings' => array( array( 'title' => "", 'type' => 'freetext', 'key' => 'z_index', 'validation' => 'int' ) ) ), 'shadow' => array( 'priority' => 50, 'title' => __( "Shadow", "megamenu" ), 'description' => __( "Apply a shadow to mega and flyout menus.", "megamenu" ), 'settings' => array( array( 'title' => __( "Enabled", "megamenu" ), 'type' => 'checkbox', 'key' => 'shadow' ), array( 'title' => __( "Horizontal", "megamenu" ), 'type' => 'freetext', 'key' => 'shadow_horizontal', 'validation' => 'px' ), array( 'title' => __( "Vertical", "megamenu" ), 'type' => 'freetext', 'key' => 'shadow_vertical', 'validation' => 'px' ), array( 'title' => __( "Blur", "megamenu" ), 'type' => 'freetext', 'key' => 'shadow_blur', 'validation' => 'px' ), array( 'title' => __( "Spread", "megamenu" ), 'type' => 'freetext', 'key' => 'shadow_spread', 'validation' => 'px' ), array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'shadow_color' ) ) ), 'transitions' => array( 'priority' => 60, 'title' => __( "Hover Transitions", "megamenu" ), 'description' => __( "Apply hover transitions to menu items. Note: Transitions will not apply to gradient backgrounds.", "megamenu" ), 'settings' => array( array( 'title' => __( "Enabled", "megamenu" ), 'type' => 'checkbox', 'key' => 'transitions' ) ) ), 'resets' => array( 'priority' => 70, 'title' => __( "Reset Widget Styling", "megamenu" ), 'description' => __( "Reset the styling of widgets within the mega menu?", "megamenu" ), 'settings' => array( array( 'title' => __( "Enabled", "megamenu" ), 'type' => 'checkbox', 'key' => 'resets' ) ) ) ) ), 'menu_bar' => array( 'title' => __( "Menu Bar", "megamenu" ), 'settings' => array( 'menu_item_height' => array( 'priority' => 05, 'title' => __( "Menu Height", "megamenu" ), 'description' => __( "Define the height of each top level menu item link. This value plus the Menu Padding (top and bottom) settings define the overall height of the menu bar.", "megamenu" ), 'settings' => array( array( 'title' => "", 'type' => 'freetext', 'key' => 'menu_item_link_height', 'validation' => 'px' ) ) ), 'menu_background' => array( 'priority' => 10, 'title' => __( "Menu Background", "megamenu" ), 'description' => __( "The background color for the main menu bar. Set each value to transparent for a 'button' style menu.", "megamenu" ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'container_background_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'container_background_to' ) ) ), 'menu_padding' => array( 'priority' => 20, 'title' => __( "Menu Padding", "megamenu" ), 'description' => __( "Padding for the main menu bar.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'container_padding_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'container_padding_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'container_padding_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'container_padding_left', 'validation' => 'px' ) ) ), 'menu_border_radius' => array( 'priority' => 30, 'title' => __( "Menu Border Radius", "megamenu" ), 'description' => __( "Set a border radius on the main menu bar.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top Left", "megamenu" ), 'type' => 'freetext', 'key' => 'container_border_radius_top_left', 'validation' => 'px' ), array( 'title' => __( "Top Right", "megamenu" ), 'type' => 'freetext', 'key' => 'container_border_radius_top_right', 'validation' => 'px' ), array( 'title' => __( "Bottom Right", "megamenu" ), 'type' => 'freetext', 'key' => 'container_border_radius_bottom_right', 'validation' => 'px' ), array( 'title' => __( "Bottom Left", "megamenu" ), 'type' => 'freetext', 'key' => 'container_border_radius_bottom_left', 'validation' => 'px' ) ) ), 'top_level_menu_items' => array( 'priority' => 50, 'title' => __( "Top Level Menu Items", "megamenu" ), 'description' => '', ), 'menu_item_align' => array( 'priority' => 55, 'title' => __( "Menu Items Align", "megamenu" ), 'description' => __( "Align <i>all</i> menu items to the left (default), centrally or to the right.", "megamenu" ), 'info' => array( __( "This option will apply to all menu items. To align an individual menu item to the right, edit the menu item itself and set 'Menu Item Align' to 'Right'.", "megamenu" ) ), 'settings' => array( array( 'title' => "", 'type' => 'align', 'key' => 'menu_item_align' ) ) ), 'menu_item_background' => array( 'priority' => 60, 'title' => __( "Menu Item Background", "megamenu" ), 'description' => __( "The background color for each top level menu item. Tip: Set these values to transparent if you've already set a background color on the menu bar.", "megamenu" ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'menu_item_background_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'menu_item_background_to' ) ) ), 'menu_item_background_hover' => array( 'priority' => 70, 'title' => __( "Menu Item Background (Hover)", "megamenu" ), 'description' => __( "The background color for a top level menu item (on hover).", "megamenu" ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'menu_item_background_hover_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'menu_item_background_hover_to' ) ) ), 'menu_item_spacing' => array( 'priority' => 80, 'title' => __( "Menu Item Spacing", "megamenu" ), 'description' => __( "Define the size of the gap between each top level menu item.", "megamenu" ), 'settings' => array( array( 'title' => "", 'type' => 'freetext', 'key' => 'menu_item_spacing', 'validation' => 'px' ) ) ), 'menu_item_font' => array( 'priority' => 100, 'title' => __( "Font", "megamenu" ), 'description' => __( "The font to use for each top level menu item.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'menu_item_link_color' ), array( 'title' => __( "Size", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_link_font_size', 'validation' => 'px' ), array( 'title' => __( "Family", "megamenu" ), 'type' => 'font', 'key' => 'menu_item_link_font' ), array( 'title' => __( "Transform", "megamenu" ), 'type' => 'transform', 'key' => 'menu_item_link_text_transform' ), array( 'title' => __( "Weight", "megamenu" ), 'type' => 'weight', 'key' => 'menu_item_link_weight' ), array( 'title' => __( "Decoration", "megamenu" ), 'type' => 'decoration', 'key' => 'menu_item_link_text_decoration' ), array( 'title' => __( "Align", "megamenu" ), 'type' => 'align', 'key' => 'menu_item_link_text_align' ), ) ), 'menu_item_font_hover' => array( 'priority' => 110, 'title' => __( "Font (Hover)", "megamenu" ), 'description' => __( "Set the font to use for each top level menu item (on hover).", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'menu_item_link_color_hover' ), array( 'title' => __( "Weight", "megamenu" ), 'type' => 'weight', 'key' => 'menu_item_link_weight_hover' ), array( 'title' => __( "Decoration", "megamenu" ), 'type' => 'decoration', 'key' => 'menu_item_link_text_decoration_hover' ), ) ), 'menu_item_padding' => array( 'priority' => 120, 'title' => __( "Menu Item Padding", "megamenu" ), 'description' => __( "Set the padding for each top level menu item.", "megamenu" ), 'info' => array( __( "Generally we advise against using the Top and Bottom options here. Use the 'Menu Height' setting to determine the height of your top level menu items.", "megamenu" ) ), 'settings' => array( array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_link_padding_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_link_padding_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_link_padding_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_link_padding_left', 'validation' => 'px' ) ) ), 'menu_item_border' => array( 'priority' => 130, 'title' => __( "Menu Item Border", "megamenu" ), 'description' => __( "Set the border to display on each top level menu item.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'menu_item_border_color' ), array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_border_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_border_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_border_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_border_left', 'validation' => 'px' ) ) ), 'menu_item_border_hover' => array( 'priority' => 140, 'title' => __( "Menu Item Border (Hover)", "megamenu" ), 'description' => __( "Set the hover border color.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'menu_item_border_color_hover' ) ) ), 'menu_item_border_radius' => array( 'priority' => 150, 'title' => __( "Menu Item Border Radius", "megamenu" ), 'description' => __( "Set rounded corners for each top level menu item.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top Left", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_link_border_radius_top_left', 'validation' => 'px' ), array( 'title' => __( "Top Right", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_link_border_radius_top_right', 'validation' => 'px' ), array( 'title' => __( "Bottom Right", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_link_border_radius_bottom_right', 'validation' => 'px' ), array( 'title' => __( "Bottom Left", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_link_border_radius_bottom_left', 'validation' => 'px' ) ) ), 'menu_item_divider' => array( 'priority' => 160, 'title' => __( "Menu Item Divider", "megamenu" ), 'description' => __( "Show a small divider bar between each menu item.", "megamenu" ), 'settings' => array( array( 'title' => __( "Enabled", "megamenu" ), 'type' => 'checkbox', 'key' => 'menu_item_divider' ), array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'menu_item_divider_color' ), array( 'title' => __( "Glow Opacity", "megamenu" ), 'type' => 'freetext', 'key' => 'menu_item_divider_glow_opacity', 'validation' => 'float' ) ) ), 'menu_item_highlight' => array( 'priority' => 170, 'title' => __( "Highlight Current Item", "megamenu" ), 'description' => __( "Apply the 'hover' styling to current menu items.", "megamenu" ), 'settings' => array( array( 'title' => __( "Enabled", "megamenu" ), 'type' => 'checkbox', 'key' => 'menu_item_highlight_current' ) ) ) ) ), 'mega_panels' => array( 'title' => __( "Mega Menus", "megamenu" ), 'settings' => array( 'panel_background' => array( 'priority' => 10, 'title' => __( "Panel Background", "megamenu" ), 'description' => __( "Set a background color for a whole sub menu.", "megamenu" ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'panel_background_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'panel_background_to' ) ) ), 'panel_width' => array( 'priority' => 20, 'title' => __( "Panel Width", "megamenu" ), 'description' => __( "Mega Panel width.", "megamenu" ), 'info' => array( __("A 100% wide panel will only ever be as wide as the menu itself. For a fixed sub menu width set this to a pixel value.", "megamenu"), __("Advanced: Enter a jQuery selector to synchronize the width and position of the sub menu with existing page element (e.g. body, #container, .page).", "megamenu"), "<a href='https://www.megamenu.com/documentation/adjust-sub-menu-width/' target='blank'>" . __("Documentation: Configuring the sub menu width", "megamenu") . '</a>' ), 'settings' => array( array( 'title' => __( "Outer Width", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_width' ), array( 'title' => __( "Inner Width", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_inner_width' ) ) ), 'panel_padding' => array( 'priority' => 30, 'title' => __( "Panel Padding", "megamenu" ), 'description' => __( "Set the padding for the whole sub menu. Set these values 0px if you wish your sub menu content to go edge-to-edge.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_padding_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_padding_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_padding_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_padding_left', 'validation' => 'px' ) ) ), 'panel_border' => array( 'priority' => 40, 'title' => __( "Panel Border", "megamenu" ), 'description' => __( "Set the border to display on the sub menu.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'panel_border_color' ), array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_border_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_border_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_border_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_border_left', 'validation' => 'px' ) ) ), 'panel_border_radius' => array( 'priority' => 50, 'title' => __( "Panel Border Radius", "megamenu" ), 'description' => __( "Set rounded corners for the sub menu.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_border_radius_top_left', 'validation' => 'px' ), array( 'title' => __( "Top Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_border_radius_top_right', 'validation' => 'px' ), array( 'title' => __( "Bottom Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_border_radius_bottom_right', 'validation' => 'px' ), array( 'title' => __( "Bottom Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_border_radius_bottom_left', 'validation' => 'px' ) ) ), 'widget_padding' => array( 'priority' => 60, 'title' => __( "Panel Items Padding", "megamenu" ), 'description' => __( "Use this to define the amount of space around each widget / set of menu items within the sub menu.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_widget_padding_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_widget_padding_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_widget_padding_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_widget_padding_left', 'validation' => 'px' ) ) ), 'mega_menu_widgets' => array( 'priority' => 65, 'title' => __( "Widgets", "megamenu" ), 'description' => '', ), 'widget_heading_font' => array( 'priority' => 70, 'title' => __( "Heading Font", "megamenu" ), 'description' => __( "Set the font to use Widget headers in the mega menu. Tip: set this to the same style as the Second Level Menu Item Header font to keep your styling consistent.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'panel_header_color' ), array( 'title' => __( "Size", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_font_size', 'validation' => 'px' ), array( 'title' => __( "Family", "megamenu" ), 'type' => 'font', 'key' => 'panel_header_font' ), array( 'title' => __( "Transform", "megamenu" ), 'type' => 'transform', 'key' => 'panel_header_text_transform' ), array( 'title' => __( "Weight", "megamenu" ), 'type' => 'weight', 'key' => 'panel_header_font_weight' ), array( 'title' => __( "Decoration", "megamenu" ), 'type' => 'decoration', 'key' => 'panel_header_text_decoration' ), ) ), 'widget_heading_padding' => array( 'priority' => 90, 'title' => __( "Heading Padding", "megamenu" ), 'description' => __( "Set the padding for the widget headings.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_padding_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_padding_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_padding_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_padding_left', 'validation' => 'px' ) ) ), 'widget_heading_margin' => array( 'priority' => 100, 'title' => __( "Heading Margin", "megamenu" ), 'description' => __( "Set the margin for the widget headings.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_margin_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_margin_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_margin_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_margin_left', 'validation' => 'px' ) ) ), 'widget_header_border' => array( 'priority' => 110, 'title' => __( "Header Border", "megamenu" ), 'description' => __( "Set the border for the widget headings.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'panel_header_border_color' ), array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_border_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_border_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_border_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_header_border_left', 'validation' => 'px' ) ) ), 'widget_content_font' => array( 'priority' => 115, 'title' => __( "Content Font", "megamenu" ), 'description' => __( "Set the font to use for panel contents.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'panel_font_color' ), array( 'title' => __( "Size", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_font_size', 'validation' => 'px' ), array( 'title' => __( "Family", "megamenu" ), 'type' => 'font', 'key' => 'panel_font_family' ) ) ), 'second_level_menu_items' => array( 'priority' => 120, 'title' => __( "Second Level Menu Items", "megamenu" ), 'description' => '', ), 'second_level_font' => array( 'priority' => 130, 'title' => __( "Font", "megamenu" ), 'description' => __( "Set the font for second level menu items when they're displayed in a Mega Menu.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'panel_second_level_font_color' ), array( 'title' => __( "Size", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_font_size', 'validation' => 'px' ), array( 'title' => __( "Family", "megamenu" ), 'type' => 'font', 'key' => 'panel_second_level_font' ), array( 'title' => __( "Transform", "megamenu" ), 'type' => 'transform', 'key' => 'panel_second_level_text_transform' ), array( 'title' => __( "Weight", "megamenu" ), 'type' => 'weight', 'key' => 'panel_second_level_font_weight' ), array( 'title' => __( "Decoration", "megamenu" ), 'type' => 'decoration', 'key' => 'panel_second_level_text_decoration' ), ) ), 'second_level_font_hover' => array( 'priority' => 140, 'title' => __( "Font (Hover)", "megamenu" ), 'description' => __( "Set the font style on hover.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'panel_second_level_font_color_hover' ), array( 'title' => __( "Weight", "megamenu" ), 'type' => 'weight', 'key' => 'panel_second_level_font_weight_hover' ), array( 'title' => __( "Decoration", "megamenu" ), 'type' => 'decoration', 'key' => 'panel_second_level_text_decoration_hover' ), ) ), 'second_level_background_hover' => array( 'priority' => 150, 'title' => __( "Background (Hover)", "megamenu" ), 'description' => __( "Set the background hover color for second level menu items.", "megamenu" ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'panel_second_level_background_hover_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'panel_second_level_background_hover_to' ) ) ), 'second_level_padding' => array( 'priority' => 160, 'title' => __( "Padding", "megamenu" ), 'description' => __( "Set the padding for the second level menu items.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_padding_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_padding_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_padding_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_padding_left', 'validation' => 'px' ) ) ), 'second_level_margin' => array( 'priority' => 170, 'title' => __( "Margin", "megamenu" ), 'description' => __( "Set the margin for the second level menu items.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_margin_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_margin_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_margin_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_margin_left', 'validation' => 'px' ) ) ), 'second_level_border' => array( 'priority' => 180, 'title' => __( "Border", "megamenu" ), 'description' => __( "Set the border for the second level menu items.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'panel_second_level_border_color' ), array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_border_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_border_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_border_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_second_level_border_left', 'validation' => 'px' ) ) ), 'third_level_menu_items' => array( 'priority' => 190, 'title' => __( "Third Level Menu Items", "megamenu" ), 'description' => '', ), 'third_level_font' => array( 'priority' => 200, 'title' => __( "Font", "megamenu" ), 'description' => __( "Set the font for third level menu items when they're displayed in a Mega Menu.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'panel_third_level_font_color' ), array( 'title' => __( "Size", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_third_level_font_size', 'validation' => 'px' ), array( 'title' => __( "Family", "megamenu" ), 'type' => 'font', 'key' => 'panel_third_level_font' ), array( 'title' => __( "Transform", "megamenu" ), 'type' => 'transform', 'key' => 'panel_third_level_text_transform' ), array( 'title' => __( "Weight", "megamenu" ), 'type' => 'weight', 'key' => 'panel_third_level_font_weight' ), array( 'title' => __( "Decoration", "megamenu" ), 'type' => 'decoration', 'key' => 'panel_third_level_text_decoration' ), ) ), 'third_level_font_hover' => array( 'priority' => 210, 'title' => __( "Font (Hover)", "megamenu" ), 'description' => __( "Set the font style on hover.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'panel_third_level_font_color_hover' ), array( 'title' => __( "Weight", "megamenu" ), 'type' => 'weight', 'key' => 'panel_third_level_font_weight_hover' ), array( 'title' => __( "Decoration", "megamenu" ), 'type' => 'decoration', 'key' => 'panel_third_level_text_decoration_hover' ), ) ), 'third_level_background_hover' => array( 'priority' => 220, 'title' => __( "Background (Hover)", "megamenu" ), 'description' => __( "Set the background hover color for third level menu items.", "megamenu" ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'panel_third_level_background_hover_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'panel_third_level_background_hover_to' ) ) ), 'third_level_padding' => array( 'priority' => 230, 'title' => __( "Padding", "megamenu" ), 'description' => __( "Set the padding for the third level menu items.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_third_level_padding_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_third_level_padding_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_third_level_padding_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'panel_third_level_padding_left', 'validation' => 'px' ) ) ) ) ), 'flyout_menus' => array( 'title' => __( "Flyout Menus", "megamenu"), 'settings' => array( 'flyout_menu_background' => array( 'priority' => 10, 'title' => __( "Sub Menu Background", "megamenu" ), 'description' => __( "Set the background color for the flyout menu.", "megamenu" ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'flyout_menu_background_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'flyout_menu_background_to' ) ) ), 'flyout_menu_width' => array( 'priority' => 20, 'title' => __( "Sub Menu Width", "megamenu" ), 'description' => __( "The width of each flyout menu. This must be a fixed pixel value.", "megamenu" ), 'info' => array( __( "Set this value to the width of your longest menu item title to stop menu items wrapping onto 2 lines.", "megamenu" ), __( "Experimental: Set this value to 'auto' to use a flexible width.", "megamenu" ) ), 'settings' => array( array( 'title' => "", 'type' => 'freetext', 'key' => 'flyout_width', 'validation' => 'px' ) ) ), 'flyout_menu_padding' => array( 'priority' => 30, 'title' => __( "Sub Menu Padding", "megamenu" ), 'description' => __( "Set the padding for the whole flyout menu.", "megamenu" ), 'info' => array( __( "Only suitable for single level flyout menus. If you're using multi level flyout menus set these values to 0px.", "megamenu" ) ), 'settings' => array( array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_padding_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_padding_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_padding_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_padding_left', 'validation' => 'px' ) ) ), 'flyout_menu_border' => array( 'priority' => 40, 'title' => __( "Sub Menu Border", "megamenu" ), 'description' => __( "Set the border for the flyout menu.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'flyout_border_color' ), array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_border_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_border_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_border_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_border_left', 'validation' => 'px' ) ) ), 'flyout_menu_border_radius' => array( 'priority' => 50, 'title' => __( "Sub Menu Border Radius", "megamenu" ), 'description' => __( "Set rounded corners for flyout menus. Rounded corners will be applied to all flyout menu levels.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top Left", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_border_radius_top_left', 'validation' => 'px' ), array( 'title' => __( "Top Right", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_border_radius_top_right', 'validation' => 'px' ), array( 'title' => __( "Bottom Right", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_border_radius_bottom_right', 'validation' => 'px' ), array( 'title' => __( "Bottom Left", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_border_radius_bottom_left', 'validation' => 'px' ) ) ), 'flyout_menu_item_background' => array( 'priority' => 60, 'title' => __( "Menu Item Background", "megamenu" ), 'description' => __( "Set the background color for a flyout menu item.", "megamenu" ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'flyout_background_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'flyout_background_to' ) ) ), 'flyout_menu_item_background_hover' => array( 'priority' => 70, 'title' => __( "Menu Item Background (Hover)", "megamenu" ), 'description' => __( "Set the background color for a flyout menu item (on hover).", "megamenu" ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'flyout_background_hover_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'flyout_background_hover_to' ) ) ), 'flyout_menu_item_height' => array( 'priority' => 80, 'title' => __( "Menu Item Height", "megamenu" ), 'description' => __( "The height of each flyout menu item.", "megamenu" ), 'settings' => array( array( 'title' => "", 'type' => 'freetext', 'key' => 'flyout_link_height', 'validation' => 'px' ) ) ), 'flyout_menu_item_padding' => array( 'priority' => 90, 'title' => __( "Menu Item Padding", "megamenu" ), 'description' => __( "Set the padding for each flyout menu item.", "megamenu" ), 'settings' => array( array( 'title' => __( "Top", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_link_padding_top', 'validation' => 'px' ), array( 'title' => __( "Right", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_link_padding_right', 'validation' => 'px' ), array( 'title' => __( "Bottom", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_link_padding_bottom', 'validation' => 'px' ), array( 'title' => __( "Left", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_link_padding_left', 'validation' => 'px' ) ) ), 'flyout_menu_item_font' => array( 'priority' => 100, 'title' => __( "Menu Item Font", "megamenu" ), 'description' => __( "Set the font for the flyout menu items.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'flyout_link_color' ), array( 'title' => __( "Size", "megamenu" ), 'type' => 'freetext', 'key' => 'flyout_link_size', 'validation' => 'px' ), array( 'title' => __( "Family", "megamenu" ), 'type' => 'font', 'key' => 'flyout_link_family' ), array( 'title' => __( "Transform", "megamenu" ), 'type' => 'transform', 'key' => 'flyout_link_text_transform' ), array( 'title' => __( "Weight", "megamenu" ), 'type' => 'weight', 'key' => 'flyout_link_weight' ), array( 'title' => __( "Decoration", "megamenu" ), 'type' => 'decoration', 'key' => 'flyout_link_text_decoration' ), ) ), 'flyout_menu_item_font_hover' => array( 'priority' => 110, 'title' => __( "Menu Item Font (Hover)", "megamenu" ), 'description' => __( "Set the font for the flyout menu items.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'flyout_link_color_hover' ), array( 'title' => __( "Weight", "megamenu" ), 'type' => 'weight', 'key' => 'flyout_link_weight_hover' ), array( 'title' => __( "Decoration", "megamenu" ), 'type' => 'decoration', 'key' => 'flyout_link_text_decoration_hover' ), ) ), 'flyout_menu_item_divider' => array( 'priority' => 120, 'title' => __( "Menu Item Divider", "megamenu" ), 'description' => __( "Show a line divider below each menu item.", "megamenu" ), 'settings' => array( array( 'title' => __( "Enabled", "megamenu" ), 'type' => 'checkbox', 'key' => 'flyout_menu_item_divider' ), array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'flyout_menu_item_divider_color' ) ) ), ) ), 'mobile_menu' => array( 'title' => __( "Mobile Menu", "megamenu" ), 'settings' => array( 'mobile_toggle_bar' => array( 'priority' => 5, 'title' => __( "Mobile Toggle Bar", "megamenu" ), 'description' => '', ), 'toggle_bar_background' => array( 'priority' => 20, 'title' => __( "Toggle Bar Background", "megamenu" ), 'description' => __( "Set the background color for the mobile menu toggle bar.", "megamenu" ), 'info' => array( __("Don't forget to update the Menu toggle block text and icon color in the Toggle Bar Designer above!", "megamenu"), ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'toggle_background_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'toggle_background_to' ) ) ), 'toggle_bar_height' => array( 'priority' => 25, 'title' => __( "Toggle Bar Height", "megamenu" ), 'description' => __( "Set the height of the mobile menu toggle bar.", "megamenu" ), 'settings' => array( array( 'title' => "", 'type' => 'freetext', 'key' => 'toggle_bar_height' ) ) ), 'disable_mobile_toggle' => array( 'priority' => 28, 'title' => __( "Disable Mobile Toggle Bar", "megamenu" ), 'description' => __( "Hide the toggle bar and display the menu in it's open state by default.", "megamenu" ), 'settings' => array( array( 'title' => "", 'type' => 'checkbox', 'key' => 'disable_mobile_toggle' ) ) ), 'responsive_breakpoint' => array( 'priority' => 3, 'title' => __( "Responsive Breakpoint", "megamenu" ), 'description' => __( "The menu will be converted to a mobile menu when the browser width is below this value.", "megamenu" ), 'settings' => array( array( 'title' => "", 'type' => 'freetext', 'key' => 'responsive_breakpoint', 'validation' => 'px' ) ), ), 'responsive_breakpoint_disabled' => array( 'priority' => 4, 'title' => __( "The 'Responsive Breakpoint' option has been set to 0px. The desktop version of the menu will be displayed for all browsers (regardless of the browser width), so the following options are disabled.", "megamenu" ), 'description' => '', ), 'mobile_toggle_disabled' => array( 'priority' => 5, 'title' => __( "The 'Disable Mobile Toggle Bar' option has been enabled. The following options are disabled as the mobile toggle bar will not be displayed.", "megamenu" ), 'description' => '', ), 'mobile_top_level_menu_items' => array( 'priority' => 33, 'title' => __( "Mobile Sub Menu", "megamenu" ), 'description' => '', ), 'mobile_menu_overlay' => array( 'priority' => 34, 'title' => __( "Sub Menu - Overlay Content", "megamenu" ), 'description' => __( "If enabled, the mobile sub menu will overlay the page content (instead of pushing the page content down)", "megamenu" ), 'settings' => array( array( 'title' => "", 'type' => 'checkbox', 'key' => 'mobile_menu_overlay' ) ) ), 'mobile_menu_force_width' => array( 'priority' => 35, 'title' => __( "Sub Menu - Force Full Width", "megamenu" ), 'description' => __( "Experimental: If enabled, the mobile sub menu will match the width and position on the given page element (rather than being limited to the width of the toggle bar). For a full width sub menu, leave the 'Selector' value set to 'body'.", "megamenu" ), 'settings' => array( array( 'title' => "Enabled", 'type' => 'checkbox', 'key' => 'mobile_menu_force_width' ), array( 'title' => __( "Selector", "megamenu" ), 'type' => 'freetext', 'key' => 'mobile_menu_force_width_selector' ), ) ), 'mobile_menu_item_height' => array( 'priority' => 38, 'title' => __( "Menu Item Height", "megamenu" ), 'description' => __( "Height of each top level item in the mobile menu.", "megamenu" ), 'settings' => array( array( 'title' => "", 'type' => 'freetext', 'key' => 'mobile_menu_item_height' ) ) ), 'mobile_background' => array( 'priority' => 40, 'title' => __( "Menu Background", "megamenu" ), 'description' => __( "The background color for the mobile menu.", "megamenu" ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'mobile_background_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'mobile_background_to' ) ) ), 'mobile_background_hover' => array( 'priority' => 45, 'title' => __( "Menu Item Background (Active)", "megamenu" ), 'description' => __( "The background color for each top level menu item in the mobile menu when the sub menu is open.", "megamenu" ), 'settings' => array( array( 'title' => __( "From", "megamenu" ), 'type' => 'color', 'key' => 'mobile_menu_item_background_hover_from' ), array( 'title' => __( "Copy", "megamenu" ), 'type' => 'copy_color', 'key' => 'copy_color' ), array( 'title' => __( "To", "megamenu" ), 'type' => 'color', 'key' => 'mobile_menu_item_background_hover_to' ) ) ), 'mobile_menu_item_font' => array( 'priority' => 50, 'title' => __( "Font", "megamenu" ), 'description' => __( "The font to use for each top level menu item in the mobile menu.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'mobile_menu_item_link_color' ), array( 'title' => __( "Size", "megamenu" ), 'type' => 'freetext', 'key' => 'mobile_menu_item_link_font_size', 'validation' => 'px' ), array( 'title' => __( "Align", "megamenu" ), 'type' => 'align', 'key' => 'mobile_menu_item_link_text_align' ), ) ), 'mobile_menu_item_font_hover' => array( 'priority' => 55, 'title' => __( "Font (Active)", "megamenu" ), 'description' => __( "The font color for each top level menu item in the mobile menu when the sub menu is open.", "megamenu" ), 'settings' => array( array( 'title' => __( "Color", "megamenu" ), 'type' => 'color', 'key' => 'mobile_menu_item_link_color_hover' ) ) ), 'mobile_mega_menus' => array( 'priority' => 60, 'title' => __( "Mega Menus", "megamenu" ), 'description' => '', ), 'mobile_columns' => array( 'priority' => 65, 'title' => __( "Mega Menu Columns", "megamenu" ), 'description' => __( "Collapse mega menu content into this many columns on mobile.", "megamenu" ), 'settings' => array( array( 'title' => "", 'type' => 'mobile_columns', 'key' => 'mobile_columns' ) ) ) ) ), 'custom_styling' => array( 'title' => __( "Custom Styling", "megamenu"), 'settings' => array( 'custom_styling' => array( 'priority' => 40, 'title' => __( "CSS Editor", "megamenu" ), 'description' => __( "Define any custom CSS you wish to add to menus using this theme. You can use standard CSS or SCSS.", "megamenu"), 'settings' => array( array( 'title' => "", 'type' => 'textarea', 'key' => 'custom_css' ) ) ) ) ) ) ); echo "<h2 class='nav-tab-wrapper'>"; $is_first = true; foreach ( $settings as $section_id => $section ) { if ($is_first) { $active = 'nav-tab-active '; $is_first = false; } else { $active = ''; } echo "<a class='mega-tab nav-tab {$active}' data-tab='mega-tab-content-{$section_id}'>".$section['title'] . "</a>"; } echo "</h2>"; $is_first = true; foreach ( $settings as $section_id => $section ) { if ($is_first) { $display = 'block'; $is_first = false; } else { $display = 'none'; } echo " <div class='mega-tab-content mega-tab-content-{$section_id}' style='display: {$display}'>"; echo " <table class='{$section_id}'>"; // order the fields by priority uasort( $section['settings'], array( $this, "compare_elems" ) ); foreach ( $section['settings'] as $group_id => $group ) { echo "<tr class='mega-{$group_id}'>"; if ( isset( $group['settings'] ) ) { echo "<td class='mega-name'>" . $group['title'] . "<div class='mega-description'>" . $group['description'] . "</div></td>"; echo "<td class='mega-value'>"; foreach ( $group['settings'] as $setting_id => $setting ) { if ( isset( $setting['validation'] ) ) { echo "<label class='mega-{$setting['key']}' data-validation='{$setting['validation']}'>"; } else { echo "<label class='mega-{$setting['key']}'>"; } echo "<span class='mega-short-desc'>{$setting['title']}</span>"; switch ( $setting['type'] ) { case "freetext": $this->print_theme_freetext_option( $setting['key'] ); break; case "textarea": $this->print_theme_textarea_option( $setting['key'] ); break; case "align": $this->print_theme_align_option( $setting['key'] ); break; case "checkbox": $this->print_theme_checkbox_option( $setting['key'] ); break; case "arrow": $this->print_theme_arrow_option( $setting['key'] ); break; case "color": $this->print_theme_color_option( $setting['key'] ); break; case "weight": $this->print_theme_weight_option( $setting['key'] ); break; case "font": $this->print_theme_font_option( $setting['key'] ); break; case "transform": $this->print_theme_transform_option( $setting['key'] ); break; case "decoration": $this->print_theme_text_decoration_option( $setting['key'] ); break; case "mobile_columns": $this->print_theme_mobile_columns_option( $setting['key'] ); break; case "copy_color": $this->print_theme_copy_color_option( $setting['key'] ); break; default: do_action("megamenu_print_theme_option_{$setting['type']}", $setting['key'], $this->id ); break; } echo "</label>"; } if ( isset( $group['info'] ) ) { foreach ( $group['info'] as $paragraph ) { echo "<div class='mega-info'>{$paragraph}</div>"; } } foreach ( $group['settings'] as $setting_id => $setting ) { if ( isset( $setting['validation'] ) ) { echo "<div class='mega-validation-message mega-validation-message-mega-{$setting['key']}'>"; if ( $setting['validation'] == 'int' ) { $message = __("Enter a whole number (e.g. 1, 5, 100, 999)"); } if ( $setting['validation'] == 'px' ) { $message = __("Enter a value including a unit (e.g. 10px, 10rem, 10%)"); } if ( $setting['validation'] == 'float' ) { $message = __("Enter a valid number (e.g. 0.1, 1, 10, 999)"); } if ( strlen( $setting['title'] ) ) { echo $setting['title'] . ": " . $message; } else { echo $message; } echo "</div>"; } } echo "</td>"; } else { echo "<td colspan='2'><h5>{$group['title']}</h5></td>"; } echo "</tr>"; } echo "</table>"; echo "</div>"; } ?> <div class='megamenu_submit'> <div class='mega_left'> <?php submit_button(); ?><span class='spinner'></span> </div> <div class='mega_right'> <?php if ( $this->string_contains( $this->id, array("custom") ) ) : ?> <a class='delete confirm' href='<?php echo $delete_url; ?>'><?php _e("Delete Theme", "megamenu"); ?></a> <?php else : ?> <a class='confirm' href='<?php echo $revert_url; ?>'><?php _e("Revert Theme", "megamenu"); ?></a> <?php endif; ?> </div> </div> <?php $this->show_cache_warning(); ?> </form> </div> <?php } /** * Check for installed caching/minification/CDN plugins and output a warning if one is found to be * installed and activated */ private function show_cache_warning() { $active_plugins = max_mega_menu_get_active_caching_plugins(); if ( count( $active_plugins ) ): ?> <hr /> <div> <h3><?php _e("Changes not showing up?", "megamenu"); ?></h3> <p><?php echo _n("We have detected the following plugin that may prevent changes made within the theme editor from being applied to the menu.", "We have detected the following plugins that may prevent changes made within the theme editor from being applied to the menu.", count( $active_plugins), "megamenu"); ?></p> <ul class='ul-disc'> <?php foreach ( $active_plugins as $name ) { echo "<li>" . $name . "</li>"; } ?> </ul> <p><?php echo _n("Try clearing the cache of the above plugin if your changes are not being applied to the menu.", "Try clearing the caches of the above plugins if your changes are not being applied to the menu.", count( $active_plugins), "megamenu"); ?></p> </div> <?php endif; } /** * Compare array values * * @param array $elem1 * @param array $elem2 * @return bool * @since 2.1 */ private function compare_elems( $elem1, $elem2 ) { return $elem1['priority'] > $elem2['priority']; } /** * Print a select dropdown with left, center and right options * * @since 1.6.1 * @param string $key * @param string $value */ public function print_theme_align_option( $key ) { $value = $this->active_theme[$key]; ?> <select name='settings[<?php echo $key ?>]'> <option value='left' <?php selected( $value, 'left' ); ?>><?php _e("Left", "megamenu") ?></option> <option value='center' <?php selected( $value, 'center' ); ?>><?php _e("Center", "megamenu") ?></option> <option value='right' <?php selected( $value, 'right' ); ?>><?php _e("Right", "megamenu") ?></option> </select> <?php } /** * Print a copy icon * * @since 2.2.3 * @param string $key * @param string $value */ public function print_theme_copy_color_option( $key ) { ?> <span class='dashicons dashicons-arrow-right-alt'></span> <?php } /** * Print a select dropdown with 1 and 2 options * * @since 1.2.0 * @param string $key * @param string $value */ public function print_theme_mobile_columns_option( $key ) { $value = $this->active_theme[$key]; ?> <select name='settings[<?php echo $key ?>]'> <option value='1' <?php selected( $value, '1' ); ?>><?php _e("1 Column", "megamenu") ?></option> <option value='2' <?php selected( $value, '2' ); ?>><?php _e("2 Columns", "megamenu") ?></option> </select> <?php } /** * Print a select dropdown with text decoration options * * @since 1.6.1 * @param string $key * @param string $value */ public function print_theme_text_decoration_option( $key ) { $value = $this->active_theme[$key]; ?> <select name='settings[<?php echo $key ?>]'> <option value='none' <?php selected( $value, 'none' ); ?>><?php _e("None", "megamenu") ?></option> <option value='underline' <?php selected( $value, 'underline' ); ?>><?php _e("Underline", "megamenu") ?></option> </select> <?php } /** * Print a checkbox option * * @since 1.6.1 * @param string $key * @param string $value */ public function print_theme_checkbox_option( $key ) { $value = $this->active_theme[$key]; ?> <input type='hidden' name='checkboxes[<?php echo $key ?>]' /> <input type='checkbox' name='settings[<?php echo $key ?>]' <?php checked( $value, 'on' ); ?> /> <?php } /** * Print an arrow dropdown selection box * * @since 1.0 * @param string $key * @param string $value */ public function print_theme_arrow_option( $key ) { $value = $this->active_theme[$key]; $arrow_icons = $this->arrow_icons(); ?> <select class='icon_dropdown' name='settings[<?php echo $key ?>]'> <?php echo "<option value='disabled'>" . __("Disabled", "megamenu") . "</option>"; foreach ($arrow_icons as $code => $class) { $name = str_replace('dashicons-', '', $class); $name = ucwords(str_replace(array('-','arrow'), ' ', $name)); echo "<option data-class='{$class}' value='{$code}' " . selected( $value, $code, false ) . ">" . $name . "</option>"; } ?> </select> <?php } /** * Print a colorpicker * * @since 1.0 * @param string $key * @param string $value */ public function print_theme_color_option( $key ) { $value = $this->active_theme[$key]; if ( $value == 'transparent' ) { $value = 'rgba(0,0,0,0)'; } if ( $value == 'rgba(0,0,0,0)' ) { $value_text = 'transparent'; } else { $value_text = $value; } echo "<div class='mm-picker-container'>"; echo " <input type='text' class='mm_colorpicker' name='settings[$key]' value='{$value}' />"; echo " <div class='chosen-color'>{$value_text}</div>"; echo "</div>"; } /** * Print a font weight selector * * @since 1.0 * @param string $key * @param string $value */ public function print_theme_weight_option( $key ) { $value = $this->active_theme[$key]; $options = apply_filters( "megamenu_font_weights", array( 'inherit' => __("Theme Default", "megamenu"), '300' => __("Light (300)", "megamenu"), 'normal' => __("Normal (400)", "megamenu"), 'bold' => __("Bold (700)", "megamenu"), ) ); /** * '100' => __("Thin (100)", "megamenu"), * '200' => __("Extra Light (200)", "megamenu"), * '300' => __("Light (300)", "megamenu"), * 'normal' => __("Normal (400)", "megamenu"), * '500' => __("Medium (500)", "megamenu"), * '600' => __("Semi Bold (600)", "megamenu"), * 'bold' => __("Bold (700)", "megamenu"), * '800' => __("Extra Bold (800)", "megamenu"), * '900' => __("Black (900)", "megamenu") */ echo "<select name='settings[$key]'>"; foreach ( $options as $weight => $name ) { echo "<option value='{$weight}' " . selected( $value, $weight, true ) . ">{$name}</option>"; } echo "</select>"; } /** * Print a font transform selector * * @since 1.0 * @param string $key * @param string $value */ public function print_theme_transform_option( $key ) { $value = $this->active_theme[$key]; echo "<select name='settings[$key]'>"; echo " <option value='none' " . selected( $value, 'none', true) . ">" . __("Normal", "megamenu") . "</option>"; echo " <option value='capitalize'" . selected( $value, 'capitalize', true) . ">" . __("Capitalize", "megamenu") . "</option>"; echo " <option value='uppercase'" . selected( $value, 'uppercase', true) . ">" . __("UPPERCASE", "megamenu") . "</option>"; echo " <option value='lowercase'" . selected( $value, 'lowercase', true) . ">" . __("lowercase", "megamenu") . "</option>"; echo "</select>"; } /** * Print a textarea * * @since 1.0 * @param string $key * @param string $value */ public function print_theme_textarea_option( $key ) { $value = $this->active_theme[$key]; ?> <textarea id='codemirror' name='settings[<?php echo $key ?>]'><?php echo stripslashes( $value ) ?></textarea> <p><b><?php _e("Custom Styling Tips", "megamenu"); ?></b></p> <p><?php _e("You can enter standard CSS or <a href='https://sass-lang.com/guide' target='_blank'>SCSS</a> into the custom styling area. If using SCSS there are some variables and mixins you can use:"); ?></p> <ul class='custom_styling_tips'> <li><code>#{$wrap}</code> <?php _e("converts to the ID selector of the menu wrapper, e.g. div#mega-menu-wrap-primary", "megamenu"); ?></li> <li><code>#{$menu}</code> <?php _e("converts to the ID selector of the menu, e.g. ul#mega-menu-primary", "megamenu"); ?></li> <li><code>@include mobile|desktop { .. }</code> <?php _e("wraps the CSS within a media query based on the configured Responsive Breakpoint (see example CSS)", "megamenu"); ?></li> <?php $string = __("Using the %wrap% and %menu% variables makes your theme portable (allowing you to apply the same theme to multiple menu locations)", "megamenu"); $string = str_replace('%wrap%', '<code>#{$wrap}</code>', $string); $string = str_replace('%menu%', '<code>#{$menu}</code>', $string); ?> <li><?php echo $string; ?></li> <li>Example CSS:</li> <code>/** Add text shadow to top level menu items on desktop AND mobile **/ <br />#{$wrap} #{$menu} > li.mega-menu-item > a.mega-menu-link { <br /> text-shadow: 1px 1px #000000; <br />} </code> <br /><br /> <code>/** Add text shadow to top level menu items on desktop only **/ <br />@include desktop { <br /> #{$wrap} #{$menu} > li.mega-menu-item > a.mega-menu-link { <br /> text-shadow: 1px 1px #000000; <br /> } <br />} </code></li> </ul> <?php } /** * Print a font selector * * @since 1.0 * @param string $key * @param string $value */ public function print_theme_font_option( $key ) { $value = $this->active_theme[$key]; echo "<select name='settings[$key]'>"; echo "<option value='inherit'>" . __("Theme Default", "megamenu") . "</option>"; foreach ( $this->fonts() as $font ) { $parts = explode(",", $font); $font_name = trim($parts[0]); echo "<option value=\"{$font}\" " . selected( $font, $value ) . ">{$font_name}</option>"; } echo "</select>"; } /** * Print a text input * * @since 1.0 * @param string $key * @param string $value */ public function print_theme_freetext_option( $key ) { $value = $this->active_theme[$key]; echo "<input class='mega-setting-{$key}' type='text' name='settings[$key]' value='{$value}' />"; } /** * Returns a list of available fonts. * * @since 1.0 */ public function fonts() { $fonts = array( "Georgia, serif", "Palatino Linotype, Book Antiqua, Palatino, serif", "Times New Roman, Times, serif", "Arial, Helvetica, sans-serif", "Arial Black, Gadget, sans-serif", "Comic Sans MS, cursive, sans-serif", "Impact, Charcoal, sans-serif", "Lucida Sans Unicode, Lucida Grande, sans-serif", "Tahoma, Geneva, sans-serif", "Trebuchet MS, Helvetica, sans-serif", "Verdana, Geneva, sans-serif", "Courier New, Courier, monospace", "Lucida Console, Monaco, monospace" ); $fonts = apply_filters( "megamenu_fonts", $fonts ); return $fonts; } /** * List of all available arrow DashIcon classes. * * @since 1.0 * @return array - Sorted list of icon classes */ private function arrow_icons() { $icons = array( 'dash-f142' => 'dashicons-arrow-up', 'dash-f140' => 'dashicons-arrow-down', 'dash-f141' => 'dashicons-arrow-left', 'dash-f139' => 'dashicons-arrow-right', 'dash-f342' => 'dashicons-arrow-up-alt', 'dash-f346' => 'dashicons-arrow-down-alt', 'dash-f340' => 'dashicons-arrow-left-alt', 'dash-f344' => 'dashicons-arrow-right-alt', 'dash-f343' => 'dashicons-arrow-up-alt2', 'dash-f347' => 'dashicons-arrow-down-alt2', 'dash-f341' => 'dashicons-arrow-left-alt2', 'dash-f345' => 'dashicons-arrow-right-alt2', 'dash-f132' => 'dashicons-plus', 'dash-f460' => 'dashicons-minus', 'dash-f158' => 'dashicons-no', 'dash-f335' => 'dashicons-no-alt', ); $icons = apply_filters( "megamenu_arrow_icons", $icons ); return $icons; } /** * Enqueue nav-menus.php scripts * * @since 1.8.3 */ public function enqueue_scripts() { wp_enqueue_script('accordion'); wp_enqueue_style( 'spectrum', MEGAMENU_BASE_URL . 'js/spectrum/spectrum.css', false, MEGAMENU_VERSION ); wp_enqueue_style( 'mega-menu-settings', MEGAMENU_BASE_URL . 'css/admin/admin.css', false, MEGAMENU_VERSION ); wp_deregister_style('codemirror'); wp_enqueue_style( 'select2', MEGAMENU_BASE_URL . 'js/select2/select2.css', false, MEGAMENU_VERSION ); wp_enqueue_script( 'spectrum', MEGAMENU_BASE_URL . 'js/spectrum/spectrum.js', array( 'jquery' ), MEGAMENU_VERSION ); wp_deregister_script('codemirror'); $cm_settings['codeEditor'] = wp_enqueue_code_editor(array('type' => 'text/x-scss')); wp_localize_script('jquery', 'cm_settings', $cm_settings); wp_enqueue_style('wp-codemirror'); wp_enqueue_script( 'mega-menu-select2', MEGAMENU_BASE_URL . 'js/select2/select2.min.js', array(), MEGAMENU_VERSION ); wp_enqueue_script( 'mega-menu-theme-editor', MEGAMENU_BASE_URL . 'js/settings.js', array( 'jquery', 'spectrum' ), MEGAMENU_VERSION ); wp_localize_script( 'mega-menu-theme-editor', 'megamenu_settings', array( 'confirm' => __("Are you sure?", "megamenu"), "theme_save_error" => __("Error saving theme.", "megamenu"), "theme_save_error_refresh" => __("Please try refreshing the page.", "megamenu"), "theme_save_error_exhausted" => __("The server ran out of memory whilst trying to regenerate the menu CSS.", "megamenu"), "theme_save_error_memory_limit" => __("Try disabling unusued plugins to increase the available memory. Alternatively, for details on how to increase your server memory limit see:", "megamenu"), "theme_save_error_500" => __("The server returned a 500 error. The server did not provide an error message (you should find details of the error in your server error log), but this is usually due to your server memory limit being reached.", "megamenu"), "increase_memory_limit_url" => "http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/", "increase_memory_limit_anchor_text" => "How to increase the WordPress memory limit" ) ); } } endif;