Make WordPress Core


Ignore:
Timestamp:
02/23/2010 07:28:41 PM (15 years ago)
Author:
ryan
Message:

More output consolidation. see #11817

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-widgets.php

    r13328 r13336  
    10451045
    10461046    function WP_CustomNavWidget() {
    1047         $widget_ops = array('description' => 'Use this widget to add one of your Custom Navigation Menus as a widget.' );
    1048         parent::WP_Widget(false, __('Custom Navigation Menu'),$widget_ops);
     1047        $widget_ops = array('description' => __('Use this widget to add one of your Custom Navigation Menus as a widget.') );
     1048        parent::WP_Widget(false, __('Custom Navigation Menu'), $widget_ops);
    10491049    }
    10501050
     
    10601060        $navulclass = $instance['navulclass'];
    10611061
    1062         //Override for menu descriptions
     1062        // Override for menu descriptions
    10631063        $advanced_option_descriptions = get_option('wp_settings_custom_nav_advanced_options');
    1064         if ($advanced_option_descriptions == 'no')
    1065         {
     1064        if ( $advanced_option_descriptions == 'no' ) {
    10661065            $navwidgetdescription = 2;
    1067         }
    1068         else
    1069         {
     1066        } else {
    10701067            $navwidgetdescription = $instance['navwidgetdescription'];
    10711068        }
     
    10741071        global $wpdb;
    10751072
    1076         //GET menu name
    1077         if ($navmenu > 0)
    1078         {
    1079             $table_name_menus = $wpdb->prefix . "custom_nav_menus";
    1080             $wp_result = $wpdb->get_results("SELECT menu_name FROM ".$table_name_menus." WHERE id='".$navmenu."'");
    1081             $wp_custom_nav_menu_name = $wp_result[0]->menu_name;
     1073        // GET menu name
     1074        if ( $navmenu > 0 ) {
     1075            $custom_menu = get_term( (int) $nav_menu, 'nav_menu' );
     1076            $wp_custom_nav_menu_name = $custom_menu->name;
    10821077            $menuexists = true;
    1083         }
    1084         //Do nothing
    1085         else
    1086         {
     1078        } else {
    10871079            $menuexists = false;
    10881080        }
     
    10911083        <?php
    10921084            //DEVELOPER settings enabled
    1093             if ($navdeveloper == 'yes')
    1094             {
     1085            if ( $navdeveloper == 'yes' ) {
    10951086                //DISPLAY Custom DIV
    1096                 if ($navdiv == 'yes')
    1097                 {
     1087                if ( $navdiv == 'yes' ) {
    10981088                    ?>
    10991089                    <div id="<?php echo $navdivid;  ?>" class="<?php echo $navdivclass; ?>">
    11001090                    <?php
    11011091                }
    1102                 //Do NOT display DIV
    1103                 else
    1104                 {
    1105 
    1106                 }
    1107 
    11081092            }
    11091093            //DISPLAY default DIV
    1110             else
    1111             {
     1094            else {
    11121095                ?>
    11131096                <div class="widget">
     
    11191102            <?php
    11201103
    1121             if ($menuexists)
    1122             {
     1104            if ( $menuexists ) {
    11231105                ?>
    11241106                <?php
    11251107
    11261108                //DEVELOPER settings enabled
    1127                 if ($navdeveloper == 'yes')
    1128                 {
     1109                if ( $navdeveloper == 'yes' ) {
    11291110                    //DISPLAY Custom UL
    1130                     if ($navul == 'yes')
    1131                     {
     1111                    if ( $navul == 'yes' ) {
    11321112                        ?>
    11331113                        <ul id="<?php echo $navulid;  ?>" class="<?php echo $navulclass; ?>">
    11341114                        <?php
    11351115                    }
    1136                     //Do NOT display UL
    1137                     else
    1138                     {
    1139 
    1140                     }
    1141 
    11421116                }
    11431117                //DISPLAY default UL
    1144                 else
    1145                 {
     1118                else {
    11461119                    ?>
    11471120                    <ul class="custom-nav">
     
    11531126                        <?php
    11541127                            //DISPLAY custom navigation menu
    1155                             if (get_option('wp_custom_nav_menu') == 'true') {
    1156                                 custom_nav('name='.$wp_custom_nav_menu_name.'&desc='.$navwidgetdescription);
    1157                             }
     1128                            if ( get_option('wp_custom_nav_menu') == 'true' )
     1129                                custom_nav( array('id' => $navmenu, 'name' => $wp_custom_nav_menu_name, 'desc' => $navwidgetdescription) );
    11581130                        ?>
    11591131
     
    11611133
    11621134                    //DEVELOPER settings enabled
    1163                     if ($navdeveloper == 'yes')
    1164                     {
     1135                    if ( $navdeveloper == 'yes' ) {
    11651136                        //DISPLAY Custom UL
    1166                         if ($navul == 'yes')
    1167                         {
     1137                        if ( $navul == 'yes' ) {
    11681138                            ?>
    11691139                            </ul>
    11701140                            <?php
    11711141                        }
    1172                         //Do NOT display UL
    1173                         else
    1174                         {
    1175 
    1176                         }
    1177 
    11781142                    }
    11791143                    //DISPLAY default UL
    1180                     else
    1181                     {
     1144                    else {
    11821145                        ?>
    11831146                        </ul>
     
    11871150                ?>
    11881151            <?php
    1189             }
    1190             else
    1191             {
    1192                 echo "You have not setup the custom navigation widget correctly, please check your settings in the backend.";
     1152            } else {
     1153                _e('You have not setup the custom navigation widget correctly, please check your settings in the backend.');
    11931154            }
    11941155            ?>
    11951156        <?php
    11961157            //DEVELOPER settings enabled
    1197             if ($navdeveloper == 'yes')
    1198             {
     1158            if ($navdeveloper == 'yes') {
    11991159                //DISPLAY Custom DIV
    12001160                if ($navdiv == 'yes')
     
    12411201        global $wpdb;
    12421202
    1243         //GET Menu Items for SELECT OPTIONS
    1244         $table_name_custom_menus = $wpdb->prefix . "custom_nav_menus";
    1245         $custom_menu_records = $wpdb->get_results("SELECT id,menu_name FROM ".$table_name_custom_menus);
    1246 
    1247         //CHECK if menus exist
    1248         if ($custom_menu_records > 0)
    1249         {
    1250 
     1203        // Get menus
     1204        $custom_menus = get_terms( 'nav_menu', array( 'hide_empty' => false ) );
     1205
     1206        if ( $custom_menus ) {
    12511207            ?>
    12521208
     
    12581214
    12591215                    //DISPLAY SELECT OPTIONS
    1260                     foreach ($custom_menu_records as $custom_menu_record)
    1261                     {
    1262                         if ($navmenu == $custom_menu_record->id) {
     1216                    foreach ( $custom_menus as $menu ) {
     1217                        if ( $navmenu == $menu->term_id) {
    12631218                            $selected_option = 'selected="selected"';
    1264                         }
    1265                         else {
     1219                        } else {
    12661220                            $selected_option = '';
    12671221                        }
    12681222                        ?>
    1269                         <option value="<?php echo $custom_menu_record->id; ?>" <?php echo $selected_option; ?>><?php echo $custom_menu_record->menu_name; ?></option>
     1223                        <option value="<?php echo $menu->term_id; ?>" <?php echo $selected_option; ?>><?php echo $menu->name; ?></option>
    12701224                        <?php
    12711225
     
    12771231
    12781232            <p>
    1279 
    12801233                <label for="<?php echo $this->get_field_id('navtitle'); ?>"><?php _e('Title:'); ?></label>
    12811234                <input type="text" name="<?php echo $this->get_field_name('navtitle'); ?>" value="<?php echo $navtitle; ?>" class="widefat" id="<?php echo $this->get_field_id('navtitle'); ?>" />
     
    13171270            <?php
    13181271
    1319             if ($checked == 'yes')
    1320             {
     1272            if ( $checked == 'yes' ) {
    13211273
    13221274                ?>
Note: See TracChangeset for help on using the changeset viewer.