Make WordPress Core

source: trunk/wp-includes/default-widgets.php @ 16013

Last change on this file since 16013 was 16013, checked in by westi, 14 years ago

Restore the (at most 15) on the Recent Posts Widgets UI - Accidentally removed as part of [14483].

  • Property svn:eol-style set to native
File size: 41.3 KB
Line 
1<?php
2
3/**
4 * Default Widgets
5 *
6 * @package WordPress
7 * @subpackage Widgets
8 */
9
10/**
11 * Pages widget class
12 *
13 * @since 2.8.0
14 */
15class WP_Widget_Pages extends WP_Widget {
16
17        function WP_Widget_Pages() {
18                $widget_ops = array('classname' => 'widget_pages', 'description' => __( 'Your site&#8217;s WordPress Pages') );
19                $this->WP_Widget('pages', __('Pages'), $widget_ops);
20        }
21
22        function widget( $args, $instance ) {
23                extract( $args );
24
25                $title = apply_filters('widget_title', empty( $instance['title'] ) ? __( 'Pages' ) : $instance['title'], $instance, $this->id_base);
26                $sortby = empty( $instance['sortby'] ) ? 'menu_order' : $instance['sortby'];
27                $exclude = empty( $instance['exclude'] ) ? '' : $instance['exclude'];
28
29                if ( $sortby == 'menu_order' )
30                        $sortby = 'menu_order, post_title';
31
32                $out = wp_list_pages( apply_filters('widget_pages_args', array('title_li' => '', 'echo' => 0, 'sort_column' => $sortby, 'exclude' => $exclude) ) );
33
34                if ( !empty( $out ) ) {
35                        echo $before_widget;
36                        if ( $title)
37                                echo $before_title . $title . $after_title;
38                ?>
39                <ul>
40                        <?php echo $out; ?>
41                </ul>
42                <?php
43                        echo $after_widget;
44                }
45        }
46
47        function update( $new_instance, $old_instance ) {
48                $instance = $old_instance;
49                $instance['title'] = strip_tags($new_instance['title']);
50                if ( in_array( $new_instance['sortby'], array( 'post_title', 'menu_order', 'ID' ) ) ) {
51                        $instance['sortby'] = $new_instance['sortby'];
52                } else {
53                        $instance['sortby'] = 'menu_order';
54                }
55
56                $instance['exclude'] = strip_tags( $new_instance['exclude'] );
57
58                return $instance;
59        }
60
61        function form( $instance ) {
62                //Defaults
63                $instance = wp_parse_args( (array) $instance, array( 'sortby' => 'post_title', 'title' => '', 'exclude' => '') );
64                $title = esc_attr( $instance['title'] );
65                $exclude = esc_attr( $instance['exclude'] );
66        ?>
67                <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
68                <p>
69                        <label for="<?php echo $this->get_field_id('sortby'); ?>"><?php _e( 'Sort by:' ); ?></label>
70                        <select name="<?php echo $this->get_field_name('sortby'); ?>" id="<?php echo $this->get_field_id('sortby'); ?>" class="widefat">
71                                <option value="post_title"<?php selected( $instance['sortby'], 'post_title' ); ?>><?php _e('Page title'); ?></option>
72                                <option value="menu_order"<?php selected( $instance['sortby'], 'menu_order' ); ?>><?php _e('Page order'); ?></option>
73                                <option value="ID"<?php selected( $instance['sortby'], 'ID' ); ?>><?php _e( 'Page ID' ); ?></option>
74                        </select>
75                </p>
76                <p>
77                        <label for="<?php echo $this->get_field_id('exclude'); ?>"><?php _e( 'Exclude:' ); ?></label> <input type="text" value="<?php echo $exclude; ?>" name="<?php echo $this->get_field_name('exclude'); ?>" id="<?php echo $this->get_field_id('exclude'); ?>" class="widefat" />
78                        <br />
79                        <small><?php _e( 'Page IDs, separated by commas.' ); ?></small>
80                </p>
81<?php
82        }
83
84}
85
86/**
87 * Links widget class
88 *
89 * @since 2.8.0
90 */
91class WP_Widget_Links extends WP_Widget {
92
93        function WP_Widget_Links() {
94                $widget_ops = array('description' => __( "Your blogroll" ) );
95                $this->WP_Widget('links', __('Links'), $widget_ops);
96        }
97
98        function widget( $args, $instance ) {
99                extract($args, EXTR_SKIP);
100
101                $show_description = isset($instance['description']) ? $instance['description'] : false;
102                $show_name = isset($instance['name']) ? $instance['name'] : false;
103                $show_rating = isset($instance['rating']) ? $instance['rating'] : false;
104                $show_images = isset($instance['images']) ? $instance['images'] : true;
105                $category = isset($instance['category']) ? $instance['category'] : false;
106
107                if ( is_admin() && !$category ) {
108                        // Display All Links widget as such in the widgets screen
109                        echo $before_widget . $before_title. __('All Links') . $after_title . $after_widget;
110                        return;
111                }
112
113                $before_widget = preg_replace('/id="[^"]*"/','id="%id"', $before_widget);
114                wp_list_bookmarks(apply_filters('widget_links_args', array(
115                        'title_before' => $before_title, 'title_after' => $after_title,
116                        'category_before' => $before_widget, 'category_after' => $after_widget,
117                        'show_images' => $show_images, 'show_description' => $show_description,
118                        'show_name' => $show_name, 'show_rating' => $show_rating,
119                        'category' => $category, 'class' => 'linkcat widget'
120                )));
121        }
122
123        function update( $new_instance, $old_instance ) {
124                $new_instance = (array) $new_instance;
125                $instance = array( 'images' => 0, 'name' => 0, 'description' => 0, 'rating' => 0);
126                foreach ( $instance as $field => $val ) {
127                        if ( isset($new_instance[$field]) )
128                                $instance[$field] = 1;
129                }
130                $instance['category'] = intval($new_instance['category']);
131
132                return $instance;
133        }
134
135        function form( $instance ) {
136
137                //Defaults
138                $instance = wp_parse_args( (array) $instance, array( 'images' => true, 'name' => true, 'description' => false, 'rating' => false, 'category' => false ) );
139                $link_cats = get_terms( 'link_category');
140?>
141                <p>
142                <label for="<?php echo $this->get_field_id('category'); ?>" class="screen-reader-text"><?php _e('Select Link Category'); ?></label>
143                <select class="widefat" id="<?php echo $this->get_field_id('category'); ?>" name="<?php echo $this->get_field_name('category'); ?>">
144                <option value=""><?php _e('All Links'); ?></option>
145                <?php
146                foreach ( $link_cats as $link_cat ) {
147                        echo '<option value="' . intval($link_cat->term_id) . '"'
148                                . ( $link_cat->term_id == $instance['category'] ? ' selected="selected"' : '' )
149                                . '>' . $link_cat->name . "</option>\n";
150                }
151                ?>
152                </select></p>
153                <p>
154                <input class="checkbox" type="checkbox" <?php checked($instance['images'], true) ?> id="<?php echo $this->get_field_id('images'); ?>" name="<?php echo $this->get_field_name('images'); ?>" />
155                <label for="<?php echo $this->get_field_id('images'); ?>"><?php _e('Show Link Image'); ?></label><br />
156                <input class="checkbox" type="checkbox" <?php checked($instance['name'], true) ?> id="<?php echo $this->get_field_id('name'); ?>" name="<?php echo $this->get_field_name('name'); ?>" />
157                <label for="<?php echo $this->get_field_id('name'); ?>"><?php _e('Show Link Name'); ?></label><br />
158                <input class="checkbox" type="checkbox" <?php checked($instance['description'], true) ?> id="<?php echo $this->get_field_id('description'); ?>" name="<?php echo $this->get_field_name('description'); ?>" />
159                <label for="<?php echo $this->get_field_id('description'); ?>"><?php _e('Show Link Description'); ?></label><br />
160                <input class="checkbox" type="checkbox" <?php checked($instance['rating'], true) ?> id="<?php echo $this->get_field_id('rating'); ?>" name="<?php echo $this->get_field_name('rating'); ?>" />
161                <label for="<?php echo $this->get_field_id('rating'); ?>"><?php _e('Show Link Rating'); ?></label>
162                </p>
163<?php
164        }
165}
166
167/**
168 * Search widget class
169 *
170 * @since 2.8.0
171 */
172class WP_Widget_Search extends WP_Widget {
173
174        function WP_Widget_Search() {
175                $widget_ops = array('classname' => 'widget_search', 'description' => __( "A search form for your site") );
176                $this->WP_Widget('search', __('Search'), $widget_ops);
177        }
178
179        function widget( $args, $instance ) {
180                extract($args);
181                $title = apply_filters('widget_title', $instance['title'], $instance, $this->id_base);
182
183                echo $before_widget;
184                if ( $title )
185                        echo $before_title . $title . $after_title;
186
187                // Use current theme search form if it exists
188                get_search_form();
189
190                echo $after_widget;
191        }
192
193        function form( $instance ) {
194                $instance = wp_parse_args( (array) $instance, array( 'title' => '') );
195                $title = $instance['title'];
196?>
197                <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label></p>
198<?php
199        }
200
201        function update( $new_instance, $old_instance ) {
202                $instance = $old_instance;
203                $new_instance = wp_parse_args((array) $new_instance, array( 'title' => ''));
204                $instance['title'] = strip_tags($new_instance['title']);
205                return $instance;
206        }
207
208}
209
210/**
211 * Archives widget class
212 *
213 * @since 2.8.0
214 */
215class WP_Widget_Archives extends WP_Widget {
216
217        function WP_Widget_Archives() {
218                $widget_ops = array('classname' => 'widget_archive', 'description' => __( 'A monthly archive of your site&#8217;s posts') );
219                $this->WP_Widget('archives', __('Archives'), $widget_ops);
220        }
221
222        function widget( $args, $instance ) {
223                extract($args);
224                $c = $instance['count'] ? '1' : '0';
225                $d = $instance['dropdown'] ? '1' : '0';
226                $title = apply_filters('widget_title', empty($instance['title']) ? __('Archives') : $instance['title'], $instance, $this->id_base);
227
228                echo $before_widget;
229                if ( $title )
230                        echo $before_title . $title . $after_title;
231
232                if ( $d ) {
233?>
234                <select name="archive-dropdown" onchange='document.location.href=this.options[this.selectedIndex].value;'> <option value=""><?php echo esc_attr(__('Select Month')); ?></option> <?php wp_get_archives(apply_filters('widget_archives_dropdown_args', array('type' => 'monthly', 'format' => 'option', 'show_post_count' => $c))); ?> </select>
235<?php
236                } else {
237?>
238                <ul>
239                <?php wp_get_archives(apply_filters('widget_archives_args', array('type' => 'monthly', 'show_post_count' => $c))); ?>
240                </ul>
241<?php
242                }
243
244                echo $after_widget;
245        }
246
247        function update( $new_instance, $old_instance ) {
248                $instance = $old_instance;
249                $new_instance = wp_parse_args( (array) $new_instance, array( 'title' => '', 'count' => 0, 'dropdown' => '') );
250                $instance['title'] = strip_tags($new_instance['title']);
251                $instance['count'] = $new_instance['count'] ? 1 : 0;
252                $instance['dropdown'] = $new_instance['dropdown'] ? 1 : 0;
253
254                return $instance;
255        }
256
257        function form( $instance ) {
258                $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'count' => 0, 'dropdown' => '') );
259                $title = strip_tags($instance['title']);
260                $count = $instance['count'] ? 'checked="checked"' : '';
261                $dropdown = $instance['dropdown'] ? 'checked="checked"' : '';
262?>
263                <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
264                <p>
265                        <input class="checkbox" type="checkbox" <?php echo $dropdown; ?> id="<?php echo $this->get_field_id('dropdown'); ?>" name="<?php echo $this->get_field_name('dropdown'); ?>" /> <label for="<?php echo $this->get_field_id('dropdown'); ?>"><?php _e('Display as dropdown'); ?></label>
266                        <br/>
267                        <input class="checkbox" type="checkbox" <?php echo $count; ?> id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>" /> <label for="<?php echo $this->get_field_id('count'); ?>"><?php _e('Show post counts'); ?></label>
268                </p>
269<?php
270        }
271}
272
273/**
274 * Meta widget class
275 *
276 * Displays log in/out, RSS feed links, etc.
277 *
278 * @since 2.8.0
279 */
280class WP_Widget_Meta extends WP_Widget {
281
282        function WP_Widget_Meta() {
283                $widget_ops = array('classname' => 'widget_meta', 'description' => __( "Log in/out, admin, feed and WordPress links") );
284                $this->WP_Widget('meta', __('Meta'), $widget_ops);
285        }
286
287        function widget( $args, $instance ) {
288                extract($args);
289                $title = apply_filters('widget_title', empty($instance['title']) ? __('Meta') : $instance['title'], $instance, $this->id_base);
290
291                echo $before_widget;
292                if ( $title )
293                        echo $before_title . $title . $after_title;
294?>
295                        <ul>
296                        <?php wp_register(); ?>
297                        <li><?php wp_loginout(); ?></li>
298                        <li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php echo esc_attr(__('Syndicate this site using RSS 2.0')); ?>"><?php _e('Entries <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
299                        <li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php echo esc_attr(__('The latest comments to all posts in RSS')); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
300                        <li><a href="http://wordpress.org/" title="<?php echo esc_attr(__('Powered by WordPress, state-of-the-art semantic personal publishing platform.')); ?>">WordPress.org</a></li>
301                        <?php wp_meta(); ?>
302                        </ul>
303<?php
304                echo $after_widget;
305        }
306
307        function update( $new_instance, $old_instance ) {
308                $instance = $old_instance;
309                $instance['title'] = strip_tags($new_instance['title']);
310
311                return $instance;
312        }
313
314        function form( $instance ) {
315                $instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
316                $title = strip_tags($instance['title']);
317?>
318                        <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
319<?php
320        }
321}
322
323/**
324 * Calendar widget class
325 *
326 * @since 2.8.0
327 */
328class WP_Widget_Calendar extends WP_Widget {
329
330        function WP_Widget_Calendar() {
331                $widget_ops = array('classname' => 'widget_calendar', 'description' => __( 'A calendar of your site&#8217;s posts') );
332                $this->WP_Widget('calendar', __('Calendar'), $widget_ops);
333        }
334
335        function widget( $args, $instance ) {
336                extract($args);
337                $title = apply_filters('widget_title', empty($instance['title']) ? '&nbsp;' : $instance['title'], $instance, $this->id_base);
338                echo $before_widget;
339                if ( $title )
340                        echo $before_title . $title . $after_title;
341                echo '<div id="calendar_wrap">';
342                get_calendar();
343                echo '</div>';
344                echo $after_widget;
345        }
346
347        function update( $new_instance, $old_instance ) {
348                $instance = $old_instance;
349                $instance['title'] = strip_tags($new_instance['title']);
350
351                return $instance;
352        }
353
354        function form( $instance ) {
355                $instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
356                $title = strip_tags($instance['title']);
357?>
358                <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label>
359                <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
360<?php
361        }
362}
363
364/**
365 * Text widget class
366 *
367 * @since 2.8.0
368 */
369class WP_Widget_Text extends WP_Widget {
370
371        function WP_Widget_Text() {
372                $widget_ops = array('classname' => 'widget_text', 'description' => __('Arbitrary text or HTML'));
373                $control_ops = array('width' => 400, 'height' => 350);
374                $this->WP_Widget('text', __('Text'), $widget_ops, $control_ops);
375        }
376
377        function widget( $args, $instance ) {
378                extract($args);
379                $title = apply_filters( 'widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base);
380                $text = apply_filters( 'widget_text', $instance['text'], $instance );
381                echo $before_widget;
382                if ( !empty( $title ) ) { echo $before_title . $title . $after_title; } ?>
383                        <div class="textwidget"><?php echo $instance['filter'] ? wpautop($text) : $text; ?></div>
384                <?php
385                echo $after_widget;
386        }
387
388        function update( $new_instance, $old_instance ) {
389                $instance = $old_instance;
390                $instance['title'] = strip_tags($new_instance['title']);
391                if ( current_user_can('unfiltered_html') )
392                        $instance['text'] =  $new_instance['text'];
393                else
394                        $instance['text'] = stripslashes( wp_filter_post_kses( addslashes($new_instance['text']) ) ); // wp_filter_post_kses() expects slashed
395                $instance['filter'] = isset($new_instance['filter']);
396                return $instance;
397        }
398
399        function form( $instance ) {
400                $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'text' => '' ) );
401                $title = strip_tags($instance['title']);
402                $text = format_to_edit($instance['text']);
403?>
404                <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label>
405                <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
406
407                <textarea class="widefat" rows="16" cols="20" id="<?php echo $this->get_field_id('text'); ?>" name="<?php echo $this->get_field_name('text'); ?>"><?php echo $text; ?></textarea>
408
409                <p><input id="<?php echo $this->get_field_id('filter'); ?>" name="<?php echo $this->get_field_name('filter'); ?>" type="checkbox" <?php checked(isset($instance['filter']) ? $instance['filter'] : 0); ?> />&nbsp;<label for="<?php echo $this->get_field_id('filter'); ?>"><?php _e('Automatically add paragraphs'); ?></label></p>
410<?php
411        }
412}
413
414/**
415 * Categories widget class
416 *
417 * @since 2.8.0
418 */
419class WP_Widget_Categories extends WP_Widget {
420
421        function WP_Widget_Categories() {
422                $widget_ops = array( 'classname' => 'widget_categories', 'description' => __( "A list or dropdown of categories" ) );
423                $this->WP_Widget('categories', __('Categories'), $widget_ops);
424        }
425
426        function widget( $args, $instance ) {
427                extract( $args );
428
429                $title = apply_filters('widget_title', empty( $instance['title'] ) ? __( 'Categories' ) : $instance['title'], $instance, $this->id_base);
430                $c = $instance['count'] ? '1' : '0';
431                $h = $instance['hierarchical'] ? '1' : '0';
432                $d = $instance['dropdown'] ? '1' : '0';
433
434                echo $before_widget;
435                if ( $title )
436                        echo $before_title . $title . $after_title;
437
438                $cat_args = array('orderby' => 'name', 'show_count' => $c, 'hierarchical' => $h);
439
440                if ( $d ) {
441                        $cat_args['show_option_none'] = __('Select Category');
442                        wp_dropdown_categories(apply_filters('widget_categories_dropdown_args', $cat_args));
443?>
444
445<script type='text/javascript'>
446/* <![CDATA[ */
447        var dropdown = document.getElementById("cat");
448        function onCatChange() {
449                if ( dropdown.options[dropdown.selectedIndex].value > 0 ) {
450                        location.href = "<?php echo home_url(); ?>/?cat="+dropdown.options[dropdown.selectedIndex].value;
451                }
452        }
453        dropdown.onchange = onCatChange;
454/* ]]> */
455</script>
456
457<?php
458                } else {
459?>
460                <ul>
461<?php
462                $cat_args['title_li'] = '';
463                wp_list_categories(apply_filters('widget_categories_args', $cat_args));
464?>
465                </ul>
466<?php
467                }
468
469                echo $after_widget;
470        }
471
472        function update( $new_instance, $old_instance ) {
473                $instance = $old_instance;
474                $instance['title'] = strip_tags($new_instance['title']);
475                $instance['count'] = !empty($new_instance['count']) ? 1 : 0;
476                $instance['hierarchical'] = !empty($new_instance['hierarchical']) ? 1 : 0;
477                $instance['dropdown'] = !empty($new_instance['dropdown']) ? 1 : 0;
478
479                return $instance;
480        }
481
482        function form( $instance ) {
483                //Defaults
484                $instance = wp_parse_args( (array) $instance, array( 'title' => '') );
485                $title = esc_attr( $instance['title'] );
486                $count = isset($instance['count']) ? (bool) $instance['count'] :false;
487                $hierarchical = isset( $instance['hierarchical'] ) ? (bool) $instance['hierarchical'] : false;
488                $dropdown = isset( $instance['dropdown'] ) ? (bool) $instance['dropdown'] : false;
489?>
490                <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title:' ); ?></label>
491                <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
492
493                <p><input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('dropdown'); ?>" name="<?php echo $this->get_field_name('dropdown'); ?>"<?php checked( $dropdown ); ?> />
494                <label for="<?php echo $this->get_field_id('dropdown'); ?>"><?php _e( 'Display as dropdown' ); ?></label><br />
495
496                <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>"<?php checked( $count ); ?> />
497                <label for="<?php echo $this->get_field_id('count'); ?>"><?php _e( 'Show post counts' ); ?></label><br />
498
499                <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('hierarchical'); ?>" name="<?php echo $this->get_field_name('hierarchical'); ?>"<?php checked( $hierarchical ); ?> />
500                <label for="<?php echo $this->get_field_id('hierarchical'); ?>"><?php _e( 'Show hierarchy' ); ?></label></p>
501<?php
502        }
503
504}
505
506/**
507 * Recent_Posts widget class
508 *
509 * @since 2.8.0
510 */
511class WP_Widget_Recent_Posts extends WP_Widget {
512
513        function WP_Widget_Recent_Posts() {
514                $widget_ops = array('classname' => 'widget_recent_entries', 'description' => __( "The most recent posts on your site") );
515                $this->WP_Widget('recent-posts', __('Recent Posts'), $widget_ops);
516                $this->alt_option_name = 'widget_recent_entries';
517
518                add_action( 'save_post', array(&$this, 'flush_widget_cache') );
519                add_action( 'deleted_post', array(&$this, 'flush_widget_cache') );
520                add_action( 'switch_theme', array(&$this, 'flush_widget_cache') );
521        }
522
523        function widget($args, $instance) {
524                $cache = wp_cache_get('widget_recent_posts', 'widget');
525
526                if ( !is_array($cache) )
527                        $cache = array();
528
529                if ( isset($cache[$args['widget_id']]) ) {
530                        echo $cache[$args['widget_id']];
531                        return;
532                }
533
534                ob_start();
535                extract($args);
536
537                $title = apply_filters('widget_title', empty($instance['title']) ? __('Recent Posts') : $instance['title'], $instance, $this->id_base);
538                if ( !$number = (int) $instance['number'] )
539                        $number = 10;
540                else if ( $number < 1 )
541                        $number = 1;
542                else if ( $number > 15 )
543                        $number = 15;
544
545                $r = new WP_Query(array('posts_per_page' => $number, 'nopaging' => 0, 'post_status' => 'publish', 'ignore_sticky_posts' => true));
546                if ($r->have_posts()) :
547?>
548                <?php echo $before_widget; ?>
549                <?php if ( $title ) echo $before_title . $title . $after_title; ?>
550                <ul>
551                <?php  while ($r->have_posts()) : $r->the_post(); ?>
552                <li><a href="<?php the_permalink() ?>" title="<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?></a></li>
553                <?php endwhile; ?>
554                </ul>
555                <?php echo $after_widget; ?>
556<?php
557                // Reset the global $the_post as this query will have stomped on it
558                wp_reset_postdata();
559
560                endif;
561
562                $cache[$args['widget_id']] = ob_get_flush();
563                wp_cache_set('widget_recent_posts', $cache, 'widget');
564        }
565
566        function update( $new_instance, $old_instance ) {
567                $instance = $old_instance;
568                $instance['title'] = strip_tags($new_instance['title']);
569                $instance['number'] = (int) $new_instance['number'];
570                $this->flush_widget_cache();
571
572                $alloptions = wp_cache_get( 'alloptions', 'options' );
573                if ( isset($alloptions['widget_recent_entries']) )
574                        delete_option('widget_recent_entries');
575
576                return $instance;
577        }
578
579        function flush_widget_cache() {
580                wp_cache_delete('widget_recent_posts', 'widget');
581        }
582
583        function form( $instance ) {
584                $title = isset($instance['title']) ? esc_attr($instance['title']) : '';
585                if ( !isset($instance['number']) || !$number = (int) $instance['number'] )
586                        $number = 5;
587?>
588                <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label>
589                <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
590
591                <p><label for="<?php echo $this->get_field_id('number'); ?>"><?php _e('Number of posts to show:'); ?></label>
592                <input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number; ?>" size="3" /></p>
593                <small><?php _e('(at most 15)'); ?></small>
594<?php
595        }
596}
597
598/**
599 * Recent_Comments widget class
600 *
601 * @since 2.8.0
602 */
603class WP_Widget_Recent_Comments extends WP_Widget {
604
605        function WP_Widget_Recent_Comments() {
606                $widget_ops = array('classname' => 'widget_recent_comments', 'description' => __( 'The most recent comments' ) );
607                $this->WP_Widget('recent-comments', __('Recent Comments'), $widget_ops);
608                $this->alt_option_name = 'widget_recent_comments';
609
610                if ( is_active_widget(false, false, $this->id_base) )
611                        add_action( 'wp_head', array(&$this, 'recent_comments_style') );
612
613                add_action( 'comment_post', array(&$this, 'flush_widget_cache') );
614                add_action( 'transition_comment_status', array(&$this, 'flush_widget_cache') );
615        }
616
617        function recent_comments_style() { ?>
618        <style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
619<?php
620        }
621
622        function flush_widget_cache() {
623                wp_cache_delete('widget_recent_comments', 'widget');
624        }
625
626        function widget( $args, $instance ) {
627                global $comments, $comment;
628
629                $cache = wp_cache_get('widget_recent_comments', 'widget');
630
631                if ( ! is_array( $cache ) )
632                        $cache = array();
633
634                if ( isset( $cache[$args['widget_id']] ) ) {
635                        echo $cache[$args['widget_id']];
636                        return;
637                }
638
639                extract($args, EXTR_SKIP);
640                $output = '';
641                $title = apply_filters('widget_title', empty($instance['title']) ? __('Recent Comments') : $instance['title']);
642
643                if ( ! $number = (int) $instance['number'] )
644                        $number = 5;
645                else if ( $number < 1 )
646                        $number = 1;
647
648                $comments = get_comments( array( 'number' => $number, 'status' => 'approve' ) );
649                $output .= $before_widget;
650                if ( $title )
651                        $output .= $before_title . $title . $after_title;
652
653                $output .= '<ul id="recentcomments">';
654                if ( $comments ) {
655                        foreach ( (array) $comments as $comment) {
656                                $output .=  '<li class="recentcomments">' . /* translators: comments widget: 1: comment author, 2: post link */ sprintf(_x('%1$s on %2$s', 'widgets'), get_comment_author_link(), '<a href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . get_the_title($comment->comment_post_ID) . '</a>') . '</li>';
657                        }
658                }
659                $output .= '</ul>';
660                $output .= $after_widget;
661
662                echo $output;
663                $cache[$args['widget_id']] = $output;
664                wp_cache_set('widget_recent_comments', $cache, 'widget');
665        }
666
667        function update( $new_instance, $old_instance ) {
668                $instance = $old_instance;
669                $instance['title'] = strip_tags($new_instance['title']);
670                $instance['number'] = (int) $new_instance['number'];
671                $this->flush_widget_cache();
672
673                $alloptions = wp_cache_get( 'alloptions', 'options' );
674                if ( isset($alloptions['widget_recent_comments']) )
675                        delete_option('widget_recent_comments');
676
677                return $instance;
678        }
679
680        function form( $instance ) {
681                $title = isset($instance['title']) ? esc_attr($instance['title']) : '';
682                $number = isset($instance['number']) ? absint($instance['number']) : 5;
683?>
684                <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label>
685                <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
686
687                <p><label for="<?php echo $this->get_field_id('number'); ?>"><?php _e('Number of comments to show:'); ?></label>
688                <input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number; ?>" size="3" /></p>
689<?php
690        }
691}
692
693/**
694 * RSS widget class
695 *
696 * @since 2.8.0
697 */
698class WP_Widget_RSS extends WP_Widget {
699
700        function WP_Widget_RSS() {
701                $widget_ops = array( 'description' => __('Entries from any RSS or Atom feed') );
702                $control_ops = array( 'width' => 400, 'height' => 200 );
703                $this->WP_Widget( 'rss', __('RSS'), $widget_ops, $control_ops );
704        }
705
706        function widget($args, $instance) {
707
708                if ( isset($instance['error']) && $instance['error'] )
709                        return;
710
711                extract($args, EXTR_SKIP);
712
713                $url = $instance['url'];
714                while ( stristr($url, 'http') != $url )
715                        $url = substr($url, 1);
716
717                if ( empty($url) )
718                        return;
719
720                $rss = fetch_feed($url);
721                $title = $instance['title'];
722                $desc = '';
723                $link = '';
724
725                if ( ! is_wp_error($rss) ) {
726                        $desc = esc_attr(strip_tags(@html_entity_decode($rss->get_description(), ENT_QUOTES, get_option('blog_charset'))));
727                        if ( empty($title) )
728                                $title = esc_html(strip_tags($rss->get_title()));
729                        $link = esc_url(strip_tags($rss->get_permalink()));
730                        while ( stristr($link, 'http') != $link )
731                                $link = substr($link, 1);
732                }
733
734                if ( empty($title) )
735                        $title = empty($desc) ? __('Unknown Feed') : $desc;
736
737                $title = apply_filters('widget_title', $title, $instance, $this->id_base);
738                $url = esc_url(strip_tags($url));
739                $icon = includes_url('images/rss.png');
740                if ( $title )
741                        $title = "<a class='rsswidget' href='$url' title='" . esc_attr__( 'Syndicate this content' ) ."'><img style='border:0' width='14' height='14' src='$icon' alt='RSS' /></a> <a class='rsswidget' href='$link' title='$desc'>$title</a>";
742
743                echo $before_widget;
744                if ( $title )
745                        echo $before_title . $title . $after_title;
746                wp_widget_rss_output( $rss, $instance );
747                echo $after_widget;
748
749                if ( ! is_wp_error($rss) )
750                        $rss->__destruct();
751                unset($rss);
752        }
753
754        function update($new_instance, $old_instance) {
755                $testurl = ( isset($new_instance['url']) && ($new_instance['url'] != $old_instance['url']) );
756                return wp_widget_rss_process( $new_instance, $testurl );
757        }
758
759        function form($instance) {
760
761                if ( empty($instance) )
762                        $instance = array( 'title' => '', 'url' => '', 'items' => 10, 'error' => false, 'show_summary' => 0, 'show_author' => 0, 'show_date' => 0 );
763                $instance['number'] = $this->number;
764
765                wp_widget_rss_form( $instance );
766        }
767}
768
769/**
770 * Display the RSS entries in a list.
771 *
772 * @since 2.5.0
773 *
774 * @param string|array|object $rss RSS url.
775 * @param array $args Widget arguments.
776 */
777function wp_widget_rss_output( $rss, $args = array() ) {
778        if ( is_string( $rss ) ) {
779                $rss = fetch_feed($rss);
780        } elseif ( is_array($rss) && isset($rss['url']) ) {
781                $args = $rss;
782                $rss = fetch_feed($rss['url']);
783        } elseif ( !is_object($rss) ) {
784                return;
785        }
786
787        if ( is_wp_error($rss) ) {
788                if ( is_admin() || current_user_can('manage_options') )
789                        echo '<p>' . sprintf( __('<strong>RSS Error</strong>: %s'), $rss->get_error_message() ) . '</p>';
790                return;
791        }
792
793        $default_args = array( 'show_author' => 0, 'show_date' => 0, 'show_summary' => 0 );
794        $args = wp_parse_args( $args, $default_args );
795        extract( $args, EXTR_SKIP );
796
797        $items = (int) $items;
798        if ( $items < 1 || 20 < $items )
799                $items = 10;
800        $show_summary  = (int) $show_summary;
801        $show_author   = (int) $show_author;
802        $show_date     = (int) $show_date;
803
804        if ( !$rss->get_item_quantity() ) {
805                echo '<ul><li>' . __( 'An error has occurred; the feed is probably down. Try again later.' ) . '</li></ul>';
806                $rss->__destruct();
807                unset($rss);
808                return;
809        }
810
811        echo '<ul>';
812        foreach ( $rss->get_items(0, $items) as $item ) {
813                $link = $item->get_link();
814                while ( stristr($link, 'http') != $link )
815                        $link = substr($link, 1);
816                $link = esc_url(strip_tags($link));
817                $title = esc_attr(strip_tags($item->get_title()));
818                if ( empty($title) )
819                        $title = __('Untitled');
820
821                $desc = str_replace( array("\n", "\r"), ' ', esc_attr( strip_tags( @html_entity_decode( $item->get_description(), ENT_QUOTES, get_option('blog_charset') ) ) ) );
822                $desc = wp_html_excerpt( $desc, 360 );
823
824                // Append ellipsis. Change existing [...] to [&hellip;].
825                if ( '[...]' == substr( $desc, -5 ) )
826                        $desc = substr( $desc, 0, -5 ) . '[&hellip;]';
827                elseif ( '[&hellip;]' != substr( $desc, -10 ) )
828                        $desc .= ' [&hellip;]';
829
830                $desc = esc_html( $desc );
831
832                if ( $show_summary ) {
833                        $summary = "<div class='rssSummary'>$desc</div>";
834                } else {
835                        $summary = '';
836                }
837
838                $date = '';
839                if ( $show_date ) {
840                        $date = $item->get_date();
841
842                        if ( $date ) {
843                                if ( $date_stamp = strtotime( $date ) )
844                                        $date = ' <span class="rss-date">' . date_i18n( get_option( 'date_format' ), $date_stamp ) . '</span>';
845                                else
846                                        $date = '';
847                        }
848                }
849
850                $author = '';
851                if ( $show_author ) {
852                        $author = $item->get_author();
853                        if ( is_object($author) ) {
854                                $author = $author->get_name();
855                                $author = ' <cite>' . esc_html( strip_tags( $author ) ) . '</cite>';
856                        }
857                }
858
859                if ( $link == '' ) {
860                        echo "<li>$title{$date}{$summary}{$author}</li>";
861                } else {
862                        echo "<li><a class='rsswidget' href='$link' title='$desc'>$title</a>{$date}{$summary}{$author}</li>";
863                }
864        }
865        echo '</ul>';
866        $rss->__destruct();
867        unset($rss);
868}
869
870
871
872/**
873 * Display RSS widget options form.
874 *
875 * The options for what fields are displayed for the RSS form are all booleans
876 * and are as follows: 'url', 'title', 'items', 'show_summary', 'show_author',
877 * 'show_date'.
878 *
879 * @since 2.5.0
880 *
881 * @param array|string $args Values for input fields.
882 * @param array $inputs Override default display options.
883 */
884function wp_widget_rss_form( $args, $inputs = null ) {
885
886        $default_inputs = array( 'url' => true, 'title' => true, 'items' => true, 'show_summary' => true, 'show_author' => true, 'show_date' => true );
887        $inputs = wp_parse_args( $inputs, $default_inputs );
888        extract( $args );
889        extract( $inputs, EXTR_SKIP);
890
891        $number = esc_attr( $number );
892        $title  = esc_attr( $title );
893        $url    = esc_url( $url );
894        $items  = (int) $items;
895        if ( $items < 1 || 20 < $items )
896                $items  = 10;
897        $show_summary   = (int) $show_summary;
898        $show_author    = (int) $show_author;
899        $show_date      = (int) $show_date;
900
901        if ( !empty($error) )
902                echo '<p class="widget-error"><strong>' . sprintf( __('RSS Error: %s'), $error) . '</strong></p>';
903
904        if ( $inputs['url'] ) :
905?>
906        <p><label for="rss-url-<?php echo $number; ?>"><?php _e('Enter the RSS feed URL here:'); ?></label>
907        <input class="widefat" id="rss-url-<?php echo $number; ?>" name="widget-rss[<?php echo $number; ?>][url]" type="text" value="<?php echo $url; ?>" /></p>
908<?php endif; if ( $inputs['title'] ) : ?>
909        <p><label for="rss-title-<?php echo $number; ?>"><?php _e('Give the feed a title (optional):'); ?></label>
910        <input class="widefat" id="rss-title-<?php echo $number; ?>" name="widget-rss[<?php echo $number; ?>][title]" type="text" value="<?php echo $title; ?>" /></p>
911<?php endif; if ( $inputs['items'] ) : ?>
912        <p><label for="rss-items-<?php echo $number; ?>"><?php _e('How many items would you like to display?'); ?></label>
913        <select id="rss-items-<?php echo $number; ?>" name="widget-rss[<?php echo $number; ?>][items]">
914<?php
915                for ( $i = 1; $i <= 20; ++$i )
916                        echo "<option value='$i' " . ( $items == $i ? "selected='selected'" : '' ) . ">$i</option>";
917?>
918        </select></p>
919<?php endif; if ( $inputs['show_summary'] ) : ?>
920        <p><input id="rss-show-summary-<?php echo $number; ?>" name="widget-rss[<?php echo $number; ?>][show_summary]" type="checkbox" value="1" <?php if ( $show_summary ) echo 'checked="checked"'; ?>/>
921        <label for="rss-show-summary-<?php echo $number; ?>"><?php _e('Display item content?'); ?></label></p>
922<?php endif; if ( $inputs['show_author'] ) : ?>
923        <p><input id="rss-show-author-<?php echo $number; ?>" name="widget-rss[<?php echo $number; ?>][show_author]" type="checkbox" value="1" <?php if ( $show_author ) echo 'checked="checked"'; ?>/>
924        <label for="rss-show-author-<?php echo $number; ?>"><?php _e('Display item author if available?'); ?></label></p>
925<?php endif; if ( $inputs['show_date'] ) : ?>
926        <p><input id="rss-show-date-<?php echo $number; ?>" name="widget-rss[<?php echo $number; ?>][show_date]" type="checkbox" value="1" <?php if ( $show_date ) echo 'checked="checked"'; ?>/>
927        <label for="rss-show-date-<?php echo $number; ?>"><?php _e('Display item date?'); ?></label></p>
928<?php
929        endif;
930        foreach ( array_keys($default_inputs) as $input ) :
931                if ( 'hidden' === $inputs[$input] ) :
932                        $id = str_replace( '_', '-', $input );
933?>
934        <input type="hidden" id="rss-<?php echo $id; ?>-<?php echo $number; ?>" name="widget-rss[<?php echo $number; ?>][<?php echo $input; ?>]" value="<?php echo $$input; ?>" />
935<?php
936                endif;
937        endforeach;
938}
939
940/**
941 * Process RSS feed widget data and optionally retrieve feed items.
942 *
943 * The feed widget can not have more than 20 items or it will reset back to the
944 * default, which is 10.
945 *
946 * The resulting array has the feed title, feed url, feed link (from channel),
947 * feed items, error (if any), and whether to show summary, author, and date.
948 * All respectively in the order of the array elements.
949 *
950 * @since 2.5.0
951 *
952 * @param array $widget_rss RSS widget feed data. Expects unescaped data.
953 * @param bool $check_feed Optional, default is true. Whether to check feed for errors.
954 * @return array
955 */
956function wp_widget_rss_process( $widget_rss, $check_feed = true ) {
957        $items = (int) $widget_rss['items'];
958        if ( $items < 1 || 20 < $items )
959                $items = 10;
960        $url           = esc_url_raw(strip_tags( $widget_rss['url'] ));
961        $title         = trim(strip_tags( $widget_rss['title'] ));
962        $show_summary  = isset($widget_rss['show_summary']) ? (int) $widget_rss['show_summary'] : 0;
963        $show_author   = isset($widget_rss['show_author']) ? (int) $widget_rss['show_author'] :0;
964        $show_date     = isset($widget_rss['show_date']) ? (int) $widget_rss['show_date'] : 0;
965
966        if ( $check_feed ) {
967                $rss = fetch_feed($url);
968                $error = false;
969                $link = '';
970                if ( is_wp_error($rss) ) {
971                        $error = $rss->get_error_message();
972                } else {
973                        $link = esc_url(strip_tags($rss->get_permalink()));
974                        while ( stristr($link, 'http') != $link )
975                                $link = substr($link, 1);
976
977                        $rss->__destruct();
978                        unset($rss);
979                }
980        }
981
982        return compact( 'title', 'url', 'link', 'items', 'error', 'show_summary', 'show_author', 'show_date' );
983}
984
985/**
986 * Tag cloud widget class
987 *
988 * @since 2.8.0
989 */
990class WP_Widget_Tag_Cloud extends WP_Widget {
991
992        function WP_Widget_Tag_Cloud() {
993                $widget_ops = array( 'description' => __( "Your most used tags in cloud format") );
994                $this->WP_Widget('tag_cloud', __('Tag Cloud'), $widget_ops);
995        }
996
997        function widget( $args, $instance ) {
998                extract($args);
999                $current_taxonomy = $this->_get_current_taxonomy($instance);
1000                if ( !empty($instance['title']) ) {
1001                        $title = $instance['title'];
1002                } else {
1003                        if ( 'post_tag' == $current_taxonomy ) {
1004                                $title = __('Tags');
1005                        } else {
1006                                $tax = get_taxonomy($current_taxonomy);
1007                                $title = $tax->labels->name;
1008                        }
1009                }
1010                $title = apply_filters('widget_title', $title, $instance, $this->id_base);
1011
1012                echo $before_widget;
1013                if ( $title )
1014                        echo $before_title . $title . $after_title;
1015                echo '<div>';
1016                wp_tag_cloud( apply_filters('widget_tag_cloud_args', array('taxonomy' => $current_taxonomy) ) );
1017                echo "</div>\n";
1018                echo $after_widget;
1019        }
1020
1021        function update( $new_instance, $old_instance ) {
1022                $instance['title'] = strip_tags(stripslashes($new_instance['title']));
1023                $instance['taxonomy'] = stripslashes($new_instance['taxonomy']);
1024                return $instance;
1025        }
1026
1027        function form( $instance ) {
1028                $current_taxonomy = $this->_get_current_taxonomy($instance);
1029?>
1030        <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:') ?></label>
1031        <input type="text" class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" value="<?php if (isset ( $instance['title'])) {echo esc_attr( $instance['title'] );} ?>" /></p>
1032        <p><label for="<?php echo $this->get_field_id('taxonomy'); ?>"><?php _e('Taxonomy:') ?></label>
1033        <select class="widefat" id="<?php echo $this->get_field_id('taxonomy'); ?>" name="<?php echo $this->get_field_name('taxonomy'); ?>">
1034        <?php foreach ( get_object_taxonomies('post') as $taxonomy ) :
1035                                $tax = get_taxonomy($taxonomy);
1036                                if ( !$tax->show_tagcloud || empty($tax->labels->name) )
1037                                        continue;
1038        ?>
1039                <option value="<?php echo esc_attr($taxonomy) ?>" <?php selected($taxonomy, $current_taxonomy) ?>><?php echo $tax->labels->name; ?></option>
1040        <?php endforeach; ?>
1041        </select></p><?php
1042        }
1043
1044        function _get_current_taxonomy($instance) {
1045                if ( !empty($instance['taxonomy']) && taxonomy_exists($instance['taxonomy']) )
1046                        return $instance['taxonomy'];
1047
1048                return 'post_tag';
1049        }
1050}
1051
1052/**
1053 * Navigation Menu widget class
1054 *
1055 * @since 3.0.0
1056 */
1057 class WP_Nav_Menu_Widget extends WP_Widget {
1058
1059        function WP_Nav_Menu_Widget() {
1060                $widget_ops = array( 'description' => __('Use this widget to add one of your custom menus as a widget.') );
1061                parent::WP_Widget( 'nav_menu', __('Custom Menu'), $widget_ops );
1062        }
1063
1064        function widget($args, $instance) {
1065                // Get menu
1066                $nav_menu = wp_get_nav_menu_object( $instance['nav_menu'] );
1067
1068                if ( !$nav_menu )
1069                        return;
1070
1071                $instance['title'] = apply_filters('widget_title', $instance['title'], $instance, $this->id_base);
1072
1073                echo $args['before_widget'];
1074
1075                if ( !empty($instance['title']) )
1076                        echo $args['before_title'] . $instance['title'] . $args['after_title'];
1077
1078                wp_nav_menu( array( 'fallback_cb' => '', 'menu' => $nav_menu ) );
1079
1080                echo $args['after_widget'];
1081        }
1082
1083        function update( $new_instance, $old_instance ) {
1084                $instance['title'] = strip_tags( stripslashes($new_instance['title']) );
1085                $instance['nav_menu'] = (int) $new_instance['nav_menu'];
1086                return $instance;
1087        }
1088
1089        function form( $instance ) {
1090                $title = isset( $instance['title'] ) ? $instance['title'] : '';
1091                $nav_menu = isset( $instance['nav_menu'] ) ? $instance['nav_menu'] : '';
1092
1093                // Get menus
1094                $menus = get_terms( 'nav_menu', array( 'hide_empty' => false ) );
1095
1096                // If no menus exists, direct the user to go and create some.
1097                if ( !$menus ) {
1098                        echo '<p>'. sprintf( __('No menus have been created yet. <a href="%s">Create some</a>.'), admin_url('nav-menus.php') ) .'</p>';
1099                        return;
1100                }
1101                ?>
1102                <p>
1103                        <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:') ?></label>
1104                        <input type="text" class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" value="<?php echo $title; ?>" />
1105                </p>
1106                <p>
1107                        <label for="<?php echo $this->get_field_id('nav_menu'); ?>"><?php _e('Select Menu:'); ?></label>
1108                        <select id="<?php echo $this->get_field_id('nav_menu'); ?>" name="<?php echo $this->get_field_name('nav_menu'); ?>">
1109                <?php
1110                        foreach ( $menus as $menu ) {
1111                                $selected = $nav_menu == $menu->term_id ? ' selected="selected"' : '';
1112                                echo '<option'. $selected .' value="'. $menu->term_id .'">'. $menu->name .'</option>';
1113                        }
1114                ?>
1115                        </select>
1116                </p>
1117                <?php
1118        }
1119}
1120
1121/**
1122 * Register all of the default WordPress widgets on startup.
1123 *
1124 * Calls 'widgets_init' action after all of the WordPress widgets have been
1125 * registered.
1126 *
1127 * @since 2.2.0
1128 */
1129function wp_widgets_init() {
1130        if ( !is_blog_installed() )
1131                return;
1132
1133        register_widget('WP_Widget_Pages');
1134
1135        register_widget('WP_Widget_Calendar');
1136
1137        register_widget('WP_Widget_Archives');
1138
1139        register_widget('WP_Widget_Links');
1140
1141        register_widget('WP_Widget_Meta');
1142
1143        register_widget('WP_Widget_Search');
1144
1145        register_widget('WP_Widget_Text');
1146
1147        register_widget('WP_Widget_Categories');
1148
1149        register_widget('WP_Widget_Recent_Posts');
1150
1151        register_widget('WP_Widget_Recent_Comments');
1152
1153        register_widget('WP_Widget_RSS');
1154
1155        register_widget('WP_Widget_Tag_Cloud');
1156
1157        register_widget('WP_Nav_Menu_Widget');
1158
1159        do_action('widgets_init');
1160}
1161
1162add_action('init', 'wp_widgets_init', 1);
Note: See TracBrowser for help on using the repository browser.