]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/template.php
Wordpress 3.1.4
[autoinstalls/wordpress.git] / wp-admin / includes / template.php
1 <?php
2 /**
3  * Template WordPress Administration API.
4  *
5  * A Big Mess. Also some neat functions that are nicely written.
6  *
7  * @package WordPress
8  * @subpackage Administration
9  */
10
11
12 //
13 // Category Checklists
14 //
15
16 /**
17  * {@internal Missing Short Description}}
18  *
19  * @since 2.5.1
20  */
21 class Walker_Category_Checklist extends Walker {
22         var $tree_type = 'category';
23         var $db_fields = array ('parent' => 'parent', 'id' => 'term_id'); //TODO: decouple this
24
25         function start_lvl(&$output, $depth, $args) {
26                 $indent = str_repeat("\t", $depth);
27                 $output .= "$indent<ul class='children'>\n";
28         }
29
30         function end_lvl(&$output, $depth, $args) {
31                 $indent = str_repeat("\t", $depth);
32                 $output .= "$indent</ul>\n";
33         }
34
35         function start_el(&$output, $category, $depth, $args) {
36                 extract($args);
37                 if ( empty($taxonomy) )
38                         $taxonomy = 'category';
39
40                 if ( $taxonomy == 'category' )
41                         $name = 'post_category';
42                 else
43                         $name = 'tax_input['.$taxonomy.']';
44
45                 $class = in_array( $category->term_id, $popular_cats ) ? ' class="popular-category"' : '';
46                 $output .= "\n<li id='{$taxonomy}-{$category->term_id}'$class>" . '<label class="selectit"><input value="' . $category->term_id . '" type="checkbox" name="'.$name.'[]" id="in-'.$taxonomy.'-' . $category->term_id . '"' . checked( in_array( $category->term_id, $selected_cats ), true, false ) . disabled( empty( $args['disabled'] ), false, false ) . ' /> ' . esc_html( apply_filters('the_category', $category->name )) . '</label>';
47         }
48
49         function end_el(&$output, $category, $depth, $args) {
50                 $output .= "</li>\n";
51         }
52 }
53
54 /**
55  * {@internal Missing Short Description}}
56  *
57  * @since 2.5.1
58  *
59  * @param unknown_type $post_id
60  * @param unknown_type $descendants_and_self
61  * @param unknown_type $selected_cats
62  * @param unknown_type $popular_cats
63  */
64 function wp_category_checklist( $post_id = 0, $descendants_and_self = 0, $selected_cats = false, $popular_cats = false, $walker = null, $checked_ontop = true ) {
65         wp_terms_checklist($post_id,
66                 array(
67                         'taxonomy' => 'category',
68                         'descendants_and_self' => $descendants_and_self,
69                         'selected_cats' => $selected_cats,
70                         'popular_cats' => $popular_cats,
71                         'walker' => $walker,
72                         'checked_ontop' => $checked_ontop
73   ));
74 }
75
76 /**
77  * Taxonomy independent version of wp_category_checklist
78  *
79  * @since 3.0.0
80  *
81  * @param int $post_id
82  * @param array $args
83  */
84 function wp_terms_checklist($post_id = 0, $args = array()) {
85         $defaults = array(
86                 'descendants_and_self' => 0,
87                 'selected_cats' => false,
88                 'popular_cats' => false,
89                 'walker' => null,
90                 'taxonomy' => 'category',
91                 'checked_ontop' => true
92         );
93         extract( wp_parse_args($args, $defaults), EXTR_SKIP );
94
95         if ( empty($walker) || !is_a($walker, 'Walker') )
96                 $walker = new Walker_Category_Checklist;
97
98         $descendants_and_self = (int) $descendants_and_self;
99
100         $args = array('taxonomy' => $taxonomy);
101
102         $tax = get_taxonomy($taxonomy);
103         $args['disabled'] = !current_user_can($tax->cap->assign_terms);
104
105         if ( is_array( $selected_cats ) )
106                 $args['selected_cats'] = $selected_cats;
107         elseif ( $post_id )
108                 $args['selected_cats'] = wp_get_object_terms($post_id, $taxonomy, array_merge($args, array('fields' => 'ids')));
109         else
110                 $args['selected_cats'] = array();
111
112         if ( is_array( $popular_cats ) )
113                 $args['popular_cats'] = $popular_cats;
114         else
115                 $args['popular_cats'] = get_terms( $taxonomy, array( 'fields' => 'ids', 'orderby' => 'count', 'order' => 'DESC', 'number' => 10, 'hierarchical' => false ) );
116
117         if ( $descendants_and_self ) {
118                 $categories = (array) get_terms($taxonomy, array( 'child_of' => $descendants_and_self, 'hierarchical' => 0, 'hide_empty' => 0 ) );
119                 $self = get_term( $descendants_and_self, $taxonomy );
120                 array_unshift( $categories, $self );
121         } else {
122                 $categories = (array) get_terms($taxonomy, array('get' => 'all'));
123         }
124
125         if ( $checked_ontop ) {
126                 // Post process $categories rather than adding an exclude to the get_terms() query to keep the query the same across all posts (for any query cache)
127                 $checked_categories = array();
128                 $keys = array_keys( $categories );
129
130                 foreach( $keys as $k ) {
131                         if ( in_array( $categories[$k]->term_id, $args['selected_cats'] ) ) {
132                                 $checked_categories[] = $categories[$k];
133                                 unset( $categories[$k] );
134                         }
135                 }
136
137                 // Put checked cats on top
138                 echo call_user_func_array(array(&$walker, 'walk'), array($checked_categories, 0, $args));
139         }
140         // Then the rest of them
141         echo call_user_func_array(array(&$walker, 'walk'), array($categories, 0, $args));
142 }
143
144 /**
145  * {@internal Missing Short Description}}
146  *
147  * @since 2.5.0
148  *
149  * @param unknown_type $taxonomy
150  * @param unknown_type $default
151  * @param unknown_type $number
152  * @param unknown_type $echo
153  * @return unknown
154  */
155 function wp_popular_terms_checklist( $taxonomy, $default = 0, $number = 10, $echo = true ) {
156         global $post_ID;
157
158         if ( $post_ID )
159                 $checked_terms = wp_get_object_terms($post_ID, $taxonomy, array('fields'=>'ids'));
160         else
161                 $checked_terms = array();
162
163         $terms = get_terms( $taxonomy, array( 'orderby' => 'count', 'order' => 'DESC', 'number' => $number, 'hierarchical' => false ) );
164
165         $tax = get_taxonomy($taxonomy);
166         if ( ! current_user_can($tax->cap->assign_terms) )
167                 $disabled = 'disabled="disabled"';
168         else
169                 $disabled = '';
170
171         $popular_ids = array();
172         foreach ( (array) $terms as $term ) {
173                 $popular_ids[] = $term->term_id;
174                 if ( !$echo ) // hack for AJAX use
175                         continue;
176                 $id = "popular-$taxonomy-$term->term_id";
177                 $checked = in_array( $term->term_id, $checked_terms ) ? 'checked="checked"' : '';
178                 ?>
179
180                 <li id="<?php echo $id; ?>" class="popular-category">
181                         <label class="selectit">
182                         <input id="in-<?php echo $id; ?>" type="checkbox" <?php echo $checked; ?> value="<?php echo (int) $term->term_id; ?>" <?php echo $disabled ?>/>
183                                 <?php echo esc_html( apply_filters( 'the_category', $term->name ) ); ?>
184                         </label>
185                 </li>
186
187                 <?php
188         }
189         return $popular_ids;
190 }
191
192 /**
193  * {@internal Missing Short Description}}
194  *
195  * @since 2.5.1
196  *
197  * @param unknown_type $link_id
198  */
199 function wp_link_category_checklist( $link_id = 0 ) {
200         $default = 1;
201
202         if ( $link_id ) {
203                 $checked_categories = wp_get_link_cats( $link_id );
204                 // No selected categories, strange
205                 if ( ! count( $checked_categories ) )
206                         $checked_categories[] = $default;
207         } else {
208                 $checked_categories[] = $default;
209         }
210
211         $categories = get_terms( 'link_category', array( 'orderby' => 'name', 'hide_empty' => 0 ) );
212
213         if ( empty( $categories ) )
214                 return;
215
216         foreach ( $categories as $category ) {
217                 $cat_id = $category->term_id;
218                 $name = esc_html( apply_filters( 'the_category', $category->name ) );
219                 $checked = in_array( $cat_id, $checked_categories ) ? ' checked="checked"' : '';
220                 echo '<li id="link-category-', $cat_id, '"><label for="in-link-category-', $cat_id, '" class="selectit"><input value="', $cat_id, '" type="checkbox" name="link_category[]" id="in-link-category-', $cat_id, '"', $checked, '/> ', $name, "</label></li>";
221         }
222 }
223
224 /**
225  * Get the column headers for a screen
226  *
227  * @since 2.7.0
228  *
229  * @param string|object $screen The screen you want the headers for
230  * @return array Containing the headers in the format id => UI String
231  */
232 function get_column_headers( $screen ) {
233         if ( is_string( $screen ) )
234                 $screen = convert_to_screen( $screen );
235
236         global $_wp_column_headers;
237
238         if ( !isset( $_wp_column_headers[ $screen->id ] ) ) {
239                 $_wp_column_headers[ $screen->id ] = apply_filters( 'manage_' . $screen->id . '_columns', array() );
240         }
241
242         return $_wp_column_headers[ $screen->id ];
243 }
244
245 /**
246  * Get a list of hidden columns.
247  *
248  * @since 2.7.0
249  *
250  * @param string|object $screen The screen you want the hidden columns for
251  * @return array
252  */
253 function get_hidden_columns( $screen ) {
254         if ( is_string( $screen ) )
255                 $screen = convert_to_screen( $screen );
256
257         return (array) get_user_option( 'manage' . $screen->id . 'columnshidden' );
258 }
259
260 // adds hidden fields with the data for use in the inline editor for posts and pages
261 /**
262  * {@internal Missing Short Description}}
263  *
264  * @since 2.7.0
265  *
266  * @param unknown_type $post
267  */
268 function get_inline_data($post) {
269         $post_type_object = get_post_type_object($post->post_type);
270         if ( ! current_user_can($post_type_object->cap->edit_post, $post->ID) )
271                 return;
272
273         $title = esc_textarea( trim( $post->post_title ) );
274
275         echo '
276 <div class="hidden" id="inline_' . $post->ID . '">
277         <div class="post_title">' . $title . '</div>
278         <div class="post_name">' . apply_filters('editable_slug', $post->post_name) . '</div>
279         <div class="post_author">' . $post->post_author . '</div>
280         <div class="comment_status">' . esc_html( $post->comment_status ) . '</div>
281         <div class="ping_status">' . esc_html( $post->ping_status ) . '</div>
282         <div class="_status">' . esc_html( $post->post_status ) . '</div>
283         <div class="jj">' . mysql2date( 'd', $post->post_date, false ) . '</div>
284         <div class="mm">' . mysql2date( 'm', $post->post_date, false ) . '</div>
285         <div class="aa">' . mysql2date( 'Y', $post->post_date, false ) . '</div>
286         <div class="hh">' . mysql2date( 'H', $post->post_date, false ) . '</div>
287         <div class="mn">' . mysql2date( 'i', $post->post_date, false ) . '</div>
288         <div class="ss">' . mysql2date( 's', $post->post_date, false ) . '</div>
289         <div class="post_password">' . esc_html( $post->post_password ) . '</div>';
290
291         if ( $post_type_object->hierarchical )
292                 echo '<div class="post_parent">' . $post->post_parent . '</div>';
293
294         if ( $post->post_type == 'page' )
295                 echo '<div class="page_template">' . esc_html( get_post_meta( $post->ID, '_wp_page_template', true ) ) . '</div>';
296
297         if ( $post_type_object->hierarchical )
298                 echo '<div class="menu_order">' . $post->menu_order . '</div>';
299
300         $taxonomy_names = get_object_taxonomies( $post->post_type );
301         foreach ( $taxonomy_names as $taxonomy_name) {
302                 $taxonomy = get_taxonomy( $taxonomy_name );
303
304                 if ( $taxonomy->hierarchical && $taxonomy->show_ui )
305                                 echo '<div class="post_category" id="'.$taxonomy_name.'_'.$post->ID.'">' . implode( ',', wp_get_object_terms( $post->ID, $taxonomy_name, array('fields'=>'ids')) ) . '</div>';
306                 elseif ( $taxonomy->show_ui )
307                         echo '<div class="tags_input" id="'.$taxonomy_name.'_'.$post->ID.'">' . esc_html( str_replace( ',', ', ', get_terms_to_edit($post->ID, $taxonomy_name) ) ) . '</div>';
308         }
309
310         if ( !$post_type_object->hierarchical )
311                 echo '<div class="sticky">' . (is_sticky($post->ID) ? 'sticky' : '') . '</div>';
312
313         echo '</div>';
314 }
315
316 /**
317  * {@internal Missing Short Description}}
318  *
319  * @since 2.7.0
320  *
321  * @param unknown_type $position
322  * @param unknown_type $checkbox
323  * @param unknown_type $mode
324  */
325 function wp_comment_reply($position = '1', $checkbox = false, $mode = 'single', $table_row = true) {
326         // allow plugin to replace the popup content
327         $content = apply_filters( 'wp_comment_reply', '', array('position' => $position, 'checkbox' => $checkbox, 'mode' => $mode) );
328
329         if ( ! empty($content) ) {
330                 echo $content;
331                 return;
332         }
333
334         if ( $mode == 'single' ) {
335                 $wp_list_table = _get_list_table('WP_Post_Comments_List_Table');
336         } else {
337                 $wp_list_table = _get_list_table('WP_Comments_List_Table');
338         }
339
340 ?>
341 <form method="get" action="">
342 <?php if ( $table_row ) : ?>
343 <table style="display:none;"><tbody id="com-reply"><tr id="replyrow" style="display:none;"><td colspan="<?php echo $wp_list_table->get_column_count(); ?>" class="colspanchange">
344 <?php else : ?>
345 <div id="com-reply" style="display:none;"><div id="replyrow" style="display:none;">
346 <?php endif; ?>
347         <div id="replyhead" style="display:none;"><?php _e('Reply to Comment'); ?></div>
348
349         <div id="edithead" style="display:none;">
350                 <div class="inside">
351                 <label for="author"><?php _e('Name') ?></label>
352                 <input type="text" name="newcomment_author" size="50" value="" tabindex="101" id="author" />
353                 </div>
354
355                 <div class="inside">
356                 <label for="author-email"><?php _e('E-mail') ?></label>
357                 <input type="text" name="newcomment_author_email" size="50" value="" tabindex="102" id="author-email" />
358                 </div>
359
360                 <div class="inside">
361                 <label for="author-url"><?php _e('URL') ?></label>
362                 <input type="text" id="author-url" name="newcomment_author_url" size="103" value="" tabindex="103" />
363                 </div>
364                 <div style="clear:both;"></div>
365         </div>
366
367         <div id="replycontainer"><textarea rows="8" cols="40" name="replycontent" tabindex="104" id="replycontent"></textarea></div>
368
369         <p id="replysubmit" class="submit">
370         <a href="#comments-form" class="cancel button-secondary alignleft" tabindex="106"><?php _e('Cancel'); ?></a>
371         <a href="#comments-form" class="save button-primary alignright" tabindex="104">
372         <span id="savebtn" style="display:none;"><?php _e('Update Comment'); ?></span>
373         <span id="replybtn" style="display:none;"><?php _e('Submit Reply'); ?></span></a>
374         <img class="waiting" style="display:none;" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" />
375         <span class="error" style="display:none;"></span>
376         <br class="clear" />
377         </p>
378
379         <input type="hidden" name="user_ID" id="user_ID" value="<?php echo get_current_user_id(); ?>" />
380         <input type="hidden" name="action" id="action" value="" />
381         <input type="hidden" name="comment_ID" id="comment_ID" value="" />
382         <input type="hidden" name="comment_post_ID" id="comment_post_ID" value="" />
383         <input type="hidden" name="status" id="status" value="" />
384         <input type="hidden" name="position" id="position" value="<?php echo $position; ?>" />
385         <input type="hidden" name="checkbox" id="checkbox" value="<?php echo $checkbox ? 1 : 0; ?>" />
386         <input type="hidden" name="mode" id="mode" value="<?php echo esc_attr($mode); ?>" />
387         <?php wp_nonce_field( 'replyto-comment', '_ajax_nonce-replyto-comment', false ); ?>
388         <?php wp_comment_form_unfiltered_html_nonce(); ?>
389 <?php if ( $table_row ) : ?>
390 </td></tr></tbody></table>
391 <?php else : ?>
392 </div></div>
393 <?php endif; ?>
394 </form>
395 <?php
396 }
397
398 /**
399  * Output 'undo move to trash' text for comments
400  *
401  * @since 2.9.0
402  */
403 function wp_comment_trashnotice() {
404 ?>
405 <div class="hidden" id="trash-undo-holder">
406         <div class="trash-undo-inside"><?php printf(__('Comment by %s moved to the trash.'), '<strong></strong>'); ?> <span class="undo untrash"><a href="#"><?php _e('Undo'); ?></a></span></div>
407 </div>
408 <div class="hidden" id="spam-undo-holder">
409         <div class="spam-undo-inside"><?php printf(__('Comment by %s marked as spam.'), '<strong></strong>'); ?> <span class="undo unspam"><a href="#"><?php _e('Undo'); ?></a></span></div>
410 </div>
411 <?php
412 }
413
414 /**
415  * {@internal Missing Short Description}}
416  *
417  * @since 1.2.0
418  *
419  * @param unknown_type $meta
420  */
421 function list_meta( $meta ) {
422         // Exit if no meta
423         if ( ! $meta ) {
424                 echo '
425 <table id="list-table" style="display: none;">
426         <thead>
427         <tr>
428                 <th class="left">' . __( 'Name' ) . '</th>
429                 <th>' . __( 'Value' ) . '</th>
430         </tr>
431         </thead>
432         <tbody id="the-list" class="list:meta">
433         <tr><td></td></tr>
434         </tbody>
435 </table>'; //TBODY needed for list-manipulation JS
436                 return;
437         }
438         $count = 0;
439 ?>
440 <table id="list-table">
441         <thead>
442         <tr>
443                 <th class="left"><?php _e( 'Name' ) ?></th>
444                 <th><?php _e( 'Value' ) ?></th>
445         </tr>
446         </thead>
447         <tbody id='the-list' class='list:meta'>
448 <?php
449         foreach ( $meta as $entry )
450                 echo _list_meta_row( $entry, $count );
451 ?>
452         </tbody>
453 </table>
454 <?php
455 }
456
457 /**
458  * {@internal Missing Short Description}}
459  *
460  * @since 2.5.0
461  *
462  * @param unknown_type $entry
463  * @param unknown_type $count
464  * @return unknown
465  */
466 function _list_meta_row( $entry, &$count ) {
467         static $update_nonce = false;
468
469         if ( is_protected_meta( $entry['meta_key'] ) )
470                 return;
471
472         if ( !$update_nonce )
473                 $update_nonce = wp_create_nonce( 'add-meta' );
474
475         $r = '';
476         ++ $count;
477         if ( $count % 2 )
478                 $style = 'alternate';
479         else
480                 $style = '';
481         if ('_' == $entry['meta_key'] { 0 } )
482                 $style .= ' hidden';
483
484         if ( is_serialized( $entry['meta_value'] ) ) {
485                 if ( is_serialized_string( $entry['meta_value'] ) ) {
486                         // this is a serialized string, so we should display it
487                         $entry['meta_value'] = maybe_unserialize( $entry['meta_value'] );
488                 } else {
489                         // this is a serialized array/object so we should NOT display it
490                         --$count;
491                         return;
492                 }
493         }
494
495         $entry['meta_key'] = esc_attr($entry['meta_key']);
496         $entry['meta_value'] = esc_textarea( $entry['meta_value'] ); // using a <textarea />
497         $entry['meta_id'] = (int) $entry['meta_id'];
498
499         $delete_nonce = wp_create_nonce( 'delete-meta_' . $entry['meta_id'] );
500
501         $r .= "\n\t<tr id='meta-{$entry['meta_id']}' class='$style'>";
502         $r .= "\n\t\t<td class='left'><label class='screen-reader-text' for='meta[{$entry['meta_id']}][key]'>" . __( 'Key' ) . "</label><input name='meta[{$entry['meta_id']}][key]' id='meta[{$entry['meta_id']}][key]' tabindex='6' type='text' size='20' value='{$entry['meta_key']}' />";
503
504         $r .= "\n\t\t<div class='submit'>";
505         $r .= get_submit_button( __( 'Delete' ), "delete:the-list:meta-{$entry['meta_id']}::_ajax_nonce=$delete_nonce deletemeta", "deletemeta[{$entry['meta_id']}]", false, array( 'tabindex' => '6' ) );
506         $r .= "\n\t\t";
507         $r .= get_submit_button( __( 'Update' ), "add:the-list:meta-{$entry['meta_id']}::_ajax_nonce-add-meta=$update_nonce updatemeta" , 'updatemeta', false, array( 'tabindex' => '6' ) );
508         $r .= "</div>";
509         $r .= wp_nonce_field( 'change-meta', '_ajax_nonce', false, false );
510         $r .= "</td>";
511
512         $r .= "\n\t\t<td><label class='screen-reader-text' for='meta[{$entry['meta_id']}][value]'>" . __( 'Value' ) . "</label><textarea name='meta[{$entry['meta_id']}][value]' id='meta[{$entry['meta_id']}][value]' tabindex='6' rows='2' cols='30'>{$entry['meta_value']}</textarea></td>\n\t</tr>";
513         return $r;
514 }
515
516 /**
517  * {@internal Missing Short Description}}
518  *
519  * @since 1.2.0
520  */
521 function meta_form() {
522         global $wpdb;
523         $limit = (int) apply_filters( 'postmeta_form_limit', 30 );
524         $keys = $wpdb->get_col( "
525                 SELECT meta_key
526                 FROM $wpdb->postmeta
527                 GROUP BY meta_key
528                 HAVING meta_key NOT LIKE '\_%'
529                 ORDER BY meta_key
530                 LIMIT $limit" );
531         if ( $keys )
532                 natcasesort($keys);
533 ?>
534 <p><strong><?php _e( 'Add New Custom Field:' ) ?></strong></p>
535 <table id="newmeta">
536 <thead>
537 <tr>
538 <th class="left"><label for="metakeyselect"><?php _e( 'Name' ) ?></label></th>
539 <th><label for="metavalue"><?php _e( 'Value' ) ?></label></th>
540 </tr>
541 </thead>
542
543 <tbody>
544 <tr>
545 <td id="newmetaleft" class="left">
546 <?php if ( $keys ) { ?>
547 <select id="metakeyselect" name="metakeyselect" tabindex="7">
548 <option value="#NONE#"><?php _e( '&mdash; Select &mdash;' ); ?></option>
549 <?php
550
551         foreach ( $keys as $key ) {
552                 echo "\n<option value='" . esc_attr($key) . "'>" . esc_html($key) . "</option>";
553         }
554 ?>
555 </select>
556 <input class="hide-if-js" type="text" id="metakeyinput" name="metakeyinput" tabindex="7" value="" />
557 <a href="#postcustomstuff" class="hide-if-no-js" onclick="jQuery('#metakeyinput, #metakeyselect, #enternew, #cancelnew').toggle();return false;">
558 <span id="enternew"><?php _e('Enter new'); ?></span>
559 <span id="cancelnew" class="hidden"><?php _e('Cancel'); ?></span></a>
560 <?php } else { ?>
561 <input type="text" id="metakeyinput" name="metakeyinput" tabindex="7" value="" />
562 <?php } ?>
563 </td>
564 <td><textarea id="metavalue" name="metavalue" rows="2" cols="25" tabindex="8"></textarea></td>
565 </tr>
566
567 <tr><td colspan="2" class="submit">
568 <?php submit_button( __( 'Add Custom Field' ), 'add:the-list:newmeta', 'addmeta', false, array( 'id' => 'addmetasub', 'tabindex' => '9' ) ); ?>
569 <?php wp_nonce_field( 'add-meta', '_ajax_nonce-add-meta', false ); ?>
570 </td></tr>
571 </tbody>
572 </table>
573 <?php
574
575 }
576
577 /**
578  * {@internal Missing Short Description}}
579  *
580  * @since 0.71
581  *
582  * @param unknown_type $edit
583  * @param unknown_type $for_post
584  * @param unknown_type $tab_index
585  * @param unknown_type $multi
586  */
587 function touch_time( $edit = 1, $for_post = 1, $tab_index = 0, $multi = 0 ) {
588         global $wp_locale, $post, $comment;
589
590         if ( $for_post )
591                 $edit = ! ( in_array($post->post_status, array('draft', 'pending') ) && (!$post->post_date_gmt || '0000-00-00 00:00:00' == $post->post_date_gmt ) );
592
593         $tab_index_attribute = '';
594         if ( (int) $tab_index > 0 )
595                 $tab_index_attribute = " tabindex=\"$tab_index\"";
596
597         // echo '<label for="timestamp" style="display: block;"><input type="checkbox" class="checkbox" name="edit_date" value="1" id="timestamp"'.$tab_index_attribute.' /> '.__( 'Edit timestamp' ).'</label><br />';
598
599         $time_adj = current_time('timestamp');
600         $post_date = ($for_post) ? $post->post_date : $comment->comment_date;
601         $jj = ($edit) ? mysql2date( 'd', $post_date, false ) : gmdate( 'd', $time_adj );
602         $mm = ($edit) ? mysql2date( 'm', $post_date, false ) : gmdate( 'm', $time_adj );
603         $aa = ($edit) ? mysql2date( 'Y', $post_date, false ) : gmdate( 'Y', $time_adj );
604         $hh = ($edit) ? mysql2date( 'H', $post_date, false ) : gmdate( 'H', $time_adj );
605         $mn = ($edit) ? mysql2date( 'i', $post_date, false ) : gmdate( 'i', $time_adj );
606         $ss = ($edit) ? mysql2date( 's', $post_date, false ) : gmdate( 's', $time_adj );
607
608         $cur_jj = gmdate( 'd', $time_adj );
609         $cur_mm = gmdate( 'm', $time_adj );
610         $cur_aa = gmdate( 'Y', $time_adj );
611         $cur_hh = gmdate( 'H', $time_adj );
612         $cur_mn = gmdate( 'i', $time_adj );
613
614         $month = "<select " . ( $multi ? '' : 'id="mm" ' ) . "name=\"mm\"$tab_index_attribute>\n";
615         for ( $i = 1; $i < 13; $i = $i +1 ) {
616                 $month .= "\t\t\t" . '<option value="' . zeroise($i, 2) . '"';
617                 if ( $i == $mm )
618                         $month .= ' selected="selected"';
619                 $month .= '>' . $wp_locale->get_month_abbrev( $wp_locale->get_month( $i ) ) . "</option>\n";
620         }
621         $month .= '</select>';
622
623         $day = '<input type="text" ' . ( $multi ? '' : 'id="jj" ' ) . 'name="jj" value="' . $jj . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
624         $year = '<input type="text" ' . ( $multi ? '' : 'id="aa" ' ) . 'name="aa" value="' . $aa . '" size="4" maxlength="4"' . $tab_index_attribute . ' autocomplete="off" />';
625         $hour = '<input type="text" ' . ( $multi ? '' : 'id="hh" ' ) . 'name="hh" value="' . $hh . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
626         $minute = '<input type="text" ' . ( $multi ? '' : 'id="mn" ' ) . 'name="mn" value="' . $mn . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
627
628         echo '<div class="timestamp-wrap">';
629         /* translators: 1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input */
630         printf(__('%1$s%2$s, %3$s @ %4$s : %5$s'), $month, $day, $year, $hour, $minute);
631
632         echo '</div><input type="hidden" id="ss" name="ss" value="' . $ss . '" />';
633
634         if ( $multi ) return;
635
636         echo "\n\n";
637         foreach ( array('mm', 'jj', 'aa', 'hh', 'mn') as $timeunit ) {
638                 echo '<input type="hidden" id="hidden_' . $timeunit . '" name="hidden_' . $timeunit . '" value="' . $$timeunit . '" />' . "\n";
639                 $cur_timeunit = 'cur_' . $timeunit;
640                 echo '<input type="hidden" id="'. $cur_timeunit . '" name="'. $cur_timeunit . '" value="' . $$cur_timeunit . '" />' . "\n";
641         }
642 ?>
643
644 <p>
645 <a href="#edit_timestamp" class="save-timestamp hide-if-no-js button"><?php _e('OK'); ?></a>
646 <a href="#edit_timestamp" class="cancel-timestamp hide-if-no-js"><?php _e('Cancel'); ?></a>
647 </p>
648 <?php
649 }
650
651 /**
652  * {@internal Missing Short Description}}
653  *
654  * @since 1.5.0
655  *
656  * @param unknown_type $default
657  */
658 function page_template_dropdown( $default = '' ) {
659         $templates = get_page_templates();
660         ksort( $templates );
661         foreach (array_keys( $templates ) as $template )
662                 : if ( $default == $templates[$template] )
663                         $selected = " selected='selected'";
664                 else
665                         $selected = '';
666         echo "\n\t<option value='".$templates[$template]."' $selected>$template</option>";
667         endforeach;
668 }
669
670 /**
671  * {@internal Missing Short Description}}
672  *
673  * @since 1.5.0
674  *
675  * @param unknown_type $default
676  * @param unknown_type $parent
677  * @param unknown_type $level
678  * @return unknown
679  */
680 function parent_dropdown( $default = 0, $parent = 0, $level = 0 ) {
681         global $wpdb, $post_ID;
682         $items = $wpdb->get_results( $wpdb->prepare("SELECT ID, post_parent, post_title FROM $wpdb->posts WHERE post_parent = %d AND post_type = 'page' ORDER BY menu_order", $parent) );
683
684         if ( $items ) {
685                 foreach ( $items as $item ) {
686                         // A page cannot be its own parent.
687                         if (!empty ( $post_ID ) ) {
688                                 if ( $item->ID == $post_ID ) {
689                                         continue;
690                                 }
691                         }
692                         $pad = str_repeat( '&nbsp;', $level * 3 );
693                         if ( $item->ID == $default)
694                                 $current = ' selected="selected"';
695                         else
696                                 $current = '';
697
698                         echo "\n\t<option class='level-$level' value='$item->ID'$current>$pad " . esc_html($item->post_title) . "</option>";
699                         parent_dropdown( $default, $item->ID, $level +1 );
700                 }
701         } else {
702                 return false;
703         }
704 }
705
706 /**
707  * {@internal Missing Short Description}}
708  *
709  * @since 2.0.0
710  *
711  * @param unknown_type $id
712  * @return unknown
713  */
714 function the_attachment_links( $id = false ) {
715         $id = (int) $id;
716         $post = & get_post( $id );
717
718         if ( $post->post_type != 'attachment' )
719                 return false;
720
721         $icon = wp_get_attachment_image( $post->ID, 'thumbnail', true );
722         $attachment_data = wp_get_attachment_metadata( $id );
723         $thumb = isset( $attachment_data['thumb'] );
724 ?>
725 <form id="the-attachment-links">
726 <table>
727         <col />
728         <col class="widefat" />
729         <tr>
730                 <th scope="row"><?php _e( 'URL' ) ?></th>
731                 <td><textarea rows="1" cols="40" type="text" class="attachmentlinks" readonly="readonly"><?php echo esc_textarea( wp_get_attachment_url() ); ?></textarea></td>
732         </tr>
733 <?php if ( $icon ) : ?>
734         <tr>
735                 <th scope="row"><?php $thumb ? _e( 'Thumbnail linked to file' ) : _e( 'Image linked to file' ); ?></th>
736                 <td><textarea rows="1" cols="40" type="text" class="attachmentlinks" readonly="readonly"><a href="<?php echo wp_get_attachment_url(); ?>"><?php echo $icon ?></a></textarea></td>
737         </tr>
738         <tr>
739                 <th scope="row"><?php $thumb ? _e( 'Thumbnail linked to page' ) : _e( 'Image linked to page' ); ?></th>
740                 <td><textarea rows="1" cols="40" type="text" class="attachmentlinks" readonly="readonly"><a href="<?php echo get_attachment_link( $post->ID ) ?>" rel="attachment wp-att-<?php echo $post->ID; ?>"><?php echo $icon ?></a></textarea></td>
741         </tr>
742 <?php else : ?>
743         <tr>
744                 <th scope="row"><?php _e( 'Link to file' ) ?></th>
745                 <td><textarea rows="1" cols="40" type="text" class="attachmentlinks" readonly="readonly"><a href="<?php echo wp_get_attachment_url(); ?>" class="attachmentlink"><?php echo basename( wp_get_attachment_url() ); ?></a></textarea></td>
746         </tr>
747         <tr>
748                 <th scope="row"><?php _e( 'Link to page' ) ?></th>
749                 <td><textarea rows="1" cols="40" type="text" class="attachmentlinks" readonly="readonly"><a href="<?php echo get_attachment_link( $post->ID ) ?>" rel="attachment wp-att-<?php echo $post->ID ?>"><?php the_title(); ?></a></textarea></td>
750         </tr>
751 <?php endif; ?>
752 </table>
753 </form>
754 <?php
755 }
756
757
758 /**
759  * Print out <option> html elements for role selectors
760  *
761  * @since 2.1.0
762  *
763  * @param string $selected slug for the role that should be already selected
764  */
765 function wp_dropdown_roles( $selected = false ) {
766         $p = '';
767         $r = '';
768
769         $editable_roles = get_editable_roles();
770
771         foreach ( $editable_roles as $role => $details ) {
772                 $name = translate_user_role($details['name'] );
773                 if ( $selected == $role ) // preselect specified role
774                         $p = "\n\t<option selected='selected' value='" . esc_attr($role) . "'>$name</option>";
775                 else
776                         $r .= "\n\t<option value='" . esc_attr($role) . "'>$name</option>";
777         }
778         echo $p . $r;
779 }
780
781 /**
782  * {@internal Missing Short Description}}
783  *
784  * @since 2.3.0
785  *
786  * @param unknown_type $size
787  * @return unknown
788  */
789 function wp_convert_hr_to_bytes( $size ) {
790         $size = strtolower($size);
791         $bytes = (int) $size;
792         if ( strpos($size, 'k') !== false )
793                 $bytes = intval($size) * 1024;
794         elseif ( strpos($size, 'm') !== false )
795                 $bytes = intval($size) * 1024 * 1024;
796         elseif ( strpos($size, 'g') !== false )
797                 $bytes = intval($size) * 1024 * 1024 * 1024;
798         return $bytes;
799 }
800
801 /**
802  * {@internal Missing Short Description}}
803  *
804  * @since 2.3.0
805  *
806  * @param unknown_type $bytes
807  * @return unknown
808  */
809 function wp_convert_bytes_to_hr( $bytes ) {
810         $units = array( 0 => 'B', 1 => 'kB', 2 => 'MB', 3 => 'GB' );
811         $log = log( $bytes, 1024 );
812         $power = (int) $log;
813         $size = pow(1024, $log - $power);
814         return $size . $units[$power];
815 }
816
817 /**
818  * {@internal Missing Short Description}}
819  *
820  * @since 2.5.0
821  *
822  * @return unknown
823  */
824 function wp_max_upload_size() {
825         $u_bytes = wp_convert_hr_to_bytes( ini_get( 'upload_max_filesize' ) );
826         $p_bytes = wp_convert_hr_to_bytes( ini_get( 'post_max_size' ) );
827         $bytes = apply_filters( 'upload_size_limit', min($u_bytes, $p_bytes), $u_bytes, $p_bytes );
828         return $bytes;
829 }
830
831 /**
832  * Outputs the form used by the importers to accept the data to be imported
833  *
834  * @since 2.0.0
835  *
836  * @param string $action The action attribute for the form.
837  */
838 function wp_import_upload_form( $action ) {
839         $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
840         $size = wp_convert_bytes_to_hr( $bytes );
841         $upload_dir = wp_upload_dir();
842         if ( ! empty( $upload_dir['error'] ) ) :
843                 ?><div class="error"><p><?php _e('Before you can upload your import file, you will need to fix the following error:'); ?></p>
844                 <p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php
845         else :
846 ?>
847 <form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo esc_attr(wp_nonce_url($action, 'import-upload')); ?>">
848 <p>
849 <label for="upload"><?php _e( 'Choose a file from your computer:' ); ?></label> (<?php printf( __('Maximum size: %s' ), $size ); ?>)
850 <input type="file" id="upload" name="import" size="25" />
851 <input type="hidden" name="action" value="save" />
852 <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
853 </p>
854 <?php submit_button( __('Upload file and import'), 'button' ); ?>
855 </form>
856 <?php
857         endif;
858 }
859
860 /**
861  * Add a meta box to an edit form.
862  *
863  * @since 2.5.0
864  *
865  * @param string $id String for use in the 'id' attribute of tags.
866  * @param string $title Title of the meta box.
867  * @param string $callback Function that fills the box with the desired content. The function should echo its output.
868  * @param string $page The type of edit page on which to show the box (post, page, link).
869  * @param string $context The context within the page where the boxes should show ('normal', 'advanced').
870  * @param string $priority The priority within the context where the boxes should show ('high', 'low').
871  */
872 function add_meta_box($id, $title, $callback, $page, $context = 'advanced', $priority = 'default', $callback_args=null) {
873         global $wp_meta_boxes;
874
875         if ( !isset($wp_meta_boxes) )
876                 $wp_meta_boxes = array();
877         if ( !isset($wp_meta_boxes[$page]) )
878                 $wp_meta_boxes[$page] = array();
879         if ( !isset($wp_meta_boxes[$page][$context]) )
880                 $wp_meta_boxes[$page][$context] = array();
881
882         foreach ( array_keys($wp_meta_boxes[$page]) as $a_context ) {
883                 foreach ( array('high', 'core', 'default', 'low') as $a_priority ) {
884                         if ( !isset($wp_meta_boxes[$page][$a_context][$a_priority][$id]) )
885                                 continue;
886
887                         // If a core box was previously added or removed by a plugin, don't add.
888                         if ( 'core' == $priority ) {
889                                 // If core box previously deleted, don't add
890                                 if ( false === $wp_meta_boxes[$page][$a_context][$a_priority][$id] )
891                                         return;
892                                 // If box was added with default priority, give it core priority to maintain sort order
893                                 if ( 'default' == $a_priority ) {
894                                         $wp_meta_boxes[$page][$a_context]['core'][$id] = $wp_meta_boxes[$page][$a_context]['default'][$id];
895                                         unset($wp_meta_boxes[$page][$a_context]['default'][$id]);
896                                 }
897                                 return;
898                         }
899                         // If no priority given and id already present, use existing priority
900                         if ( empty($priority) ) {
901                                 $priority = $a_priority;
902                         // else if we're adding to the sorted priortiy, we don't know the title or callback. Glab them from the previously added context/priority.
903                         } elseif ( 'sorted' == $priority ) {
904                                 $title = $wp_meta_boxes[$page][$a_context][$a_priority][$id]['title'];
905                                 $callback = $wp_meta_boxes[$page][$a_context][$a_priority][$id]['callback'];
906                                 $callback_args = $wp_meta_boxes[$page][$a_context][$a_priority][$id]['args'];
907                         }
908                         // An id can be in only one priority and one context
909                         if ( $priority != $a_priority || $context != $a_context )
910                                 unset($wp_meta_boxes[$page][$a_context][$a_priority][$id]);
911                 }
912         }
913
914         if ( empty($priority) )
915                 $priority = 'low';
916
917         if ( !isset($wp_meta_boxes[$page][$context][$priority]) )
918                 $wp_meta_boxes[$page][$context][$priority] = array();
919
920         $wp_meta_boxes[$page][$context][$priority][$id] = array('id' => $id, 'title' => $title, 'callback' => $callback, 'args' => $callback_args);
921 }
922
923 /**
924  * Meta-Box template function
925  *
926  * @since 2.5.0
927  *
928  * @param string $page page identifier, also known as screen identifier
929  * @param string $context box context
930  * @param mixed $object gets passed to the box callback function as first parameter
931  * @return int number of meta_boxes
932  */
933 function do_meta_boxes($page, $context, $object) {
934         global $wp_meta_boxes;
935         static $already_sorted = false;
936
937         $hidden = get_hidden_meta_boxes($page);
938
939         printf('<div id="%s-sortables" class="meta-box-sortables">', htmlspecialchars($context));
940
941         $i = 0;
942         do {
943                 // Grab the ones the user has manually sorted. Pull them out of their previous context/priority and into the one the user chose
944                 if ( !$already_sorted && $sorted = get_user_option( "meta-box-order_$page" ) ) {
945                         foreach ( $sorted as $box_context => $ids )
946                                 foreach ( explode(',', $ids) as $id )
947                                         if ( $id )
948                                                 add_meta_box( $id, null, null, $page, $box_context, 'sorted' );
949                 }
950                 $already_sorted = true;
951
952                 if ( !isset($wp_meta_boxes) || !isset($wp_meta_boxes[$page]) || !isset($wp_meta_boxes[$page][$context]) )
953                         break;
954
955                 foreach ( array('high', 'sorted', 'core', 'default', 'low') as $priority ) {
956                         if ( isset($wp_meta_boxes[$page][$context][$priority]) ) {
957                                 foreach ( (array) $wp_meta_boxes[$page][$context][$priority] as $box ) {
958                                         if ( false == $box || ! $box['title'] )
959                                                 continue;
960                                         $i++;
961                                         $style = '';
962                                         $hidden_class = in_array($box['id'], $hidden) ? ' hide-if-js' : '';
963                                         echo '<div id="' . $box['id'] . '" class="postbox ' . postbox_classes($box['id'], $page) . $hidden_class . '" ' . '>' . "\n";
964                                         echo '<div class="handlediv" title="' . esc_attr__('Click to toggle') . '"><br /></div>';
965                                         echo "<h3 class='hndle'><span>{$box['title']}</span></h3>\n";
966                                         echo '<div class="inside">' . "\n";
967                                         call_user_func($box['callback'], $object, $box);
968                                         echo "</div>\n";
969                                         echo "</div>\n";
970                                 }
971                         }
972                 }
973         } while(0);
974
975         echo "</div>";
976
977         return $i;
978
979 }
980
981 /**
982  * Remove a meta box from an edit form.
983  *
984  * @since 2.6.0
985  *
986  * @param string $id String for use in the 'id' attribute of tags.
987  * @param string $page The type of edit page on which to show the box (post, page, link).
988  * @param string $context The context within the page where the boxes should show ('normal', 'advanced').
989  */
990 function remove_meta_box($id, $page, $context) {
991         global $wp_meta_boxes;
992
993         if ( !isset($wp_meta_boxes) )
994                 $wp_meta_boxes = array();
995         if ( !isset($wp_meta_boxes[$page]) )
996                 $wp_meta_boxes[$page] = array();
997         if ( !isset($wp_meta_boxes[$page][$context]) )
998                 $wp_meta_boxes[$page][$context] = array();
999
1000         foreach ( array('high', 'core', 'default', 'low') as $priority )
1001                 $wp_meta_boxes[$page][$context][$priority][$id] = false;
1002 }
1003
1004 /**
1005  * {@internal Missing Short Description}}
1006  *
1007  * @since 2.7.0
1008  *
1009  * @param unknown_type $screen
1010  */
1011 function meta_box_prefs($screen) {
1012         global $wp_meta_boxes;
1013
1014         if ( is_string($screen) )
1015                 $screen = convert_to_screen($screen);
1016
1017         if ( empty($wp_meta_boxes[$screen->id]) )
1018                 return;
1019
1020         $hidden = get_hidden_meta_boxes($screen);
1021
1022         foreach ( array_keys($wp_meta_boxes[$screen->id]) as $context ) {
1023                 foreach ( array_keys($wp_meta_boxes[$screen->id][$context]) as $priority ) {
1024                         foreach ( $wp_meta_boxes[$screen->id][$context][$priority] as $box ) {
1025                                 if ( false == $box || ! $box['title'] )
1026                                         continue;
1027                                 // Submit box cannot be hidden
1028                                 if ( 'submitdiv' == $box['id'] || 'linksubmitdiv' == $box['id'] )
1029                                         continue;
1030                                 $box_id = $box['id'];
1031                                 echo '<label for="' . $box_id . '-hide">';
1032                                 echo '<input class="hide-postbox-tog" name="' . $box_id . '-hide" type="checkbox" id="' . $box_id . '-hide" value="' . $box_id . '"' . (! in_array($box_id, $hidden) ? ' checked="checked"' : '') . ' />';
1033                                 echo "{$box['title']}</label>\n";
1034                         }
1035                 }
1036         }
1037 }
1038
1039 /**
1040  * Get Hidden Meta Boxes
1041  *
1042  * @since 2.7.0
1043  *
1044  * @param string|object $screen Screen identifier
1045  * @return array Hidden Meta Boxes
1046  */
1047 function get_hidden_meta_boxes( $screen ) {
1048         if ( is_string( $screen ) )
1049                 $screen = convert_to_screen( $screen );
1050
1051         $hidden = get_user_option( "metaboxhidden_{$screen->id}" );
1052
1053         // Hide slug boxes by default
1054         if ( !is_array( $hidden ) ) {
1055                 if ( 'post' == $screen->base || 'page' == $screen->base )
1056                         $hidden = array('slugdiv', 'trackbacksdiv', 'postcustom', 'postexcerpt', 'commentstatusdiv', 'commentsdiv', 'authordiv', 'revisionsdiv');
1057                 else
1058                         $hidden = array( 'slugdiv' );
1059                 $hidden = apply_filters('default_hidden_meta_boxes', $hidden, $screen);
1060         }
1061
1062         return $hidden;
1063 }
1064
1065 /**
1066  * Add a new section to a settings page.
1067  *
1068  * Part of the Settings API. Use this to define new settings sections for an admin page.
1069  * Show settings sections in your admin page callback function with do_settings_sections().
1070  * Add settings fields to your section with add_settings_field()
1071  *
1072  * The $callback argument should be the name of a function that echoes out any
1073  * content you want to show at the top of the settings section before the actual
1074  * fields. It can output nothing if you want.
1075  *
1076  * @since 2.7.0
1077  *
1078  * @global $wp_settings_sections Storage array of all settings sections added to admin pages
1079  *
1080  * @param string $id Slug-name to identify the section. Used in the 'id' attribute of tags.
1081  * @param string $title Formatted title of the section. Shown as the heading for the section.
1082  * @param string $callback Function that echos out any content at the top of the section (between heading and fields).
1083  * @param string $page The slug-name of the settings page on which to show the section. Built-in pages include 'general', 'reading', 'writing', 'discussion', 'media', etc. Create your own using add_options_page();
1084  */
1085 function add_settings_section($id, $title, $callback, $page) {
1086         global $wp_settings_sections;
1087
1088         if ( 'misc' == $page ) {
1089                 _deprecated_argument( __FUNCTION__, '3.0', __( 'The miscellaneous options group has been removed. Use another settings group.' ) );
1090                 $page = 'general';
1091         }
1092
1093         if ( !isset($wp_settings_sections) )
1094                 $wp_settings_sections = array();
1095         if ( !isset($wp_settings_sections[$page]) )
1096                 $wp_settings_sections[$page] = array();
1097         if ( !isset($wp_settings_sections[$page][$id]) )
1098                 $wp_settings_sections[$page][$id] = array();
1099
1100         $wp_settings_sections[$page][$id] = array('id' => $id, 'title' => $title, 'callback' => $callback);
1101 }
1102
1103 /**
1104  * Add a new field to a section of a settings page
1105  *
1106  * Part of the Settings API. Use this to define a settings field that will show
1107  * as part of a settings section inside a settings page. The fields are shown using
1108  * do_settings_fields() in do_settings-sections()
1109  *
1110  * The $callback argument should be the name of a function that echoes out the
1111  * html input tags for this setting field. Use get_option() to retrive existing
1112  * values to show.
1113  *
1114  * @since 2.7.0
1115  *
1116  * @global $wp_settings_fields Storage array of settings fields and info about their pages/sections
1117  *
1118  * @param string $id Slug-name to identify the field. Used in the 'id' attribute of tags.
1119  * @param string $title Formatted title of the field. Shown as the label for the field during output.
1120  * @param string $callback Function that fills the field with the desired form inputs. The function should echo its output.
1121  * @param string $page The slug-name of the settings page on which to show the section (general, reading, writing, ...).
1122  * @param string $section The slug-name of the section of the settingss page in which to show the box (default, ...).
1123  * @param array $args Additional arguments
1124  */
1125 function add_settings_field($id, $title, $callback, $page, $section = 'default', $args = array()) {
1126         global $wp_settings_fields;
1127
1128         if ( 'misc' == $page ) {
1129                 _deprecated_argument( __FUNCTION__, '3.0', __( 'The miscellaneous options group has been removed. Use another settings group.' ) );
1130                 $page = 'general';
1131         }
1132
1133         if ( !isset($wp_settings_fields) )
1134                 $wp_settings_fields = array();
1135         if ( !isset($wp_settings_fields[$page]) )
1136                 $wp_settings_fields[$page] = array();
1137         if ( !isset($wp_settings_fields[$page][$section]) )
1138                 $wp_settings_fields[$page][$section] = array();
1139
1140         $wp_settings_fields[$page][$section][$id] = array('id' => $id, 'title' => $title, 'callback' => $callback, 'args' => $args);
1141 }
1142
1143 /**
1144  * Prints out all settings sections added to a particular settings page
1145  *
1146  * Part of the Settings API. Use this in a settings page callback function
1147  * to output all the sections and fields that were added to that $page with
1148  * add_settings_section() and add_settings_field()
1149  *
1150  * @global $wp_settings_sections Storage array of all settings sections added to admin pages
1151  * @global $wp_settings_fields Storage array of settings fields and info about their pages/sections
1152  * @since 2.7.0
1153  *
1154  * @param string $page The slug name of the page whos settings sections you want to output
1155  */
1156 function do_settings_sections($page) {
1157         global $wp_settings_sections, $wp_settings_fields;
1158
1159         if ( !isset($wp_settings_sections) || !isset($wp_settings_sections[$page]) )
1160                 return;
1161
1162         foreach ( (array) $wp_settings_sections[$page] as $section ) {
1163                 echo "<h3>{$section['title']}</h3>\n";
1164                 call_user_func($section['callback'], $section);
1165                 if ( !isset($wp_settings_fields) || !isset($wp_settings_fields[$page]) || !isset($wp_settings_fields[$page][$section['id']]) )
1166                         continue;
1167                 echo '<table class="form-table">';
1168                 do_settings_fields($page, $section['id']);
1169                 echo '</table>';
1170         }
1171 }
1172
1173 /**
1174  * Print out the settings fields for a particular settings section
1175  *
1176  * Part of the Settings API. Use this in a settings page to output
1177  * a specific section. Should normally be called by do_settings_sections()
1178  * rather than directly.
1179  *
1180  * @global $wp_settings_fields Storage array of settings fields and their pages/sections
1181  *
1182  * @since 2.7.0
1183  *
1184  * @param string $page Slug title of the admin page who's settings fields you want to show.
1185  * @param section $section Slug title of the settings section who's fields you want to show.
1186  */
1187 function do_settings_fields($page, $section) {
1188         global $wp_settings_fields;
1189
1190         if ( !isset($wp_settings_fields) || !isset($wp_settings_fields[$page]) || !isset($wp_settings_fields[$page][$section]) )
1191                 return;
1192
1193         foreach ( (array) $wp_settings_fields[$page][$section] as $field ) {
1194                 echo '<tr valign="top">';
1195                 if ( !empty($field['args']['label_for']) )
1196                         echo '<th scope="row"><label for="' . $field['args']['label_for'] . '">' . $field['title'] . '</label></th>';
1197                 else
1198                         echo '<th scope="row">' . $field['title'] . '</th>';
1199                 echo '<td>';
1200                 call_user_func($field['callback'], $field['args']);
1201                 echo '</td>';
1202                 echo '</tr>';
1203         }
1204 }
1205
1206 /**
1207  * Register a settings error to be displayed to the user
1208  *
1209  * Part of the Settings API. Use this to show messages to users about settings validation
1210  * problems, missing settings or anything else.
1211  *
1212  * Settings errors should be added inside the $sanitize_callback function defined in
1213  * register_setting() for a given setting to give feedback about the submission.
1214  *
1215  * By default messages will show immediately after the submission that generated the error.
1216  * Additional calls to settings_errors() can be used to show errors even when the settings
1217  * page is first accessed.
1218  *
1219  * @since 3.0.0
1220  *
1221  * @global array $wp_settings_errors Storage array of errors registered during this pageload
1222  *
1223  * @param string $setting Slug title of the setting to which this error applies
1224  * @param string $code Slug-name to identify the error. Used as part of 'id' attribute in HTML output.
1225  * @param string $message The formatted message text to display to the user (will be shown inside styled <div> and <p>)
1226  * @param string $type The type of message it is, controls HTML class. Use 'error' or 'updated'.
1227  */
1228 function add_settings_error( $setting, $code, $message, $type = 'error' ) {
1229         global $wp_settings_errors;
1230
1231         if ( !isset($wp_settings_errors) )
1232                 $wp_settings_errors = array();
1233
1234         $new_error = array(
1235                 'setting' => $setting,
1236                 'code' => $code,
1237                 'message' => $message,
1238                 'type' => $type
1239         );
1240         $wp_settings_errors[] = $new_error;
1241 }
1242
1243 /**
1244  * Fetch settings errors registered by add_settings_error()
1245  *
1246  * Checks the $wp_settings_errors array for any errors declared during the current
1247  * pageload and returns them.
1248  *
1249  * If changes were just submitted ($_GET['settings-updated']) and settings errors were saved
1250  * to the 'settings_errors' transient then those errors will be returned instead. This
1251  * is used to pass errors back across pageloads.
1252  *
1253  * Use the $sanitize argument to manually re-sanitize the option before returning errors.
1254  * This is useful if you have errors or notices you want to show even when the user
1255  * hasn't submitted data (i.e. when they first load an options page, or in admin_notices action hook)
1256  *
1257  * @since 3.0.0
1258  *
1259  * @global array $wp_settings_errors Storage array of errors registered during this pageload
1260  *
1261  * @param string $setting Optional slug title of a specific setting who's errors you want.
1262  * @param boolean $sanitize Whether to re-sanitize the setting value before returning errors.
1263  * @return array Array of settings errors
1264  */
1265 function get_settings_errors( $setting = '', $sanitize = FALSE ) {
1266         global $wp_settings_errors;
1267
1268         // If $sanitize is true, manually re-run the sanitizisation for this option
1269         // This allows the $sanitize_callback from register_setting() to run, adding
1270         // any settings errors you want to show by default.
1271         if ( $sanitize )
1272                 sanitize_option( $setting, get_option($setting));
1273
1274         // If settings were passed back from options.php then use them
1275         // Ignore transients if $sanitize is true, we dont' want the old values anyway
1276         if ( isset($_GET['settings-updated']) && $_GET['settings-updated'] && get_transient('settings_errors') ) {
1277                 $settings_errors = get_transient('settings_errors');
1278                 delete_transient('settings_errors');
1279         // Otherwise check global in case validation has been run on this pageload
1280         } elseif ( count( $wp_settings_errors ) ) {
1281                 $settings_errors = $wp_settings_errors;
1282         } else {
1283                 return;
1284         }
1285
1286         // Filter the results to those of a specific setting if one was set
1287         if ( $setting ) {
1288                 foreach ( (array) $settings_errors as $key => $details )
1289                         if ( $setting != $details['setting'] )
1290                                 unset( $settings_errors[$key] );
1291         }
1292         return $settings_errors;
1293 }
1294
1295 /**
1296  * Display settings errors registered by add_settings_error()
1297  *
1298  * Part of the Settings API. Outputs a <div> for each error retrieved by get_settings_errors().
1299  *
1300  * This is called automatically after a settings page based on the Settings API is submitted.
1301  * Errors should be added during the validation callback function for a setting defined in register_setting()
1302  *
1303  * The $sanitize option is passed into get_settings_errors() and will re-run the setting sanitization
1304  * on its current value.
1305  *
1306  * The $hide_on_update option will cause errors to only show when the settings page is first loaded.
1307  * if the user has already saved new values it will be hidden to avoid repeating messages already
1308  * shown in the default error reporting after submission. This is useful to show general errors like missing
1309  * settings when the user arrives at the settings page.
1310  *
1311  * @since 3.0.0
1312  *
1313  * @param string $setting Optional slug title of a specific setting who's errors you want.
1314  * @param boolean $sanitize Whether to re-sanitize the setting value before returning errors.
1315  * @param boolean $hide_on_update If set to true errors will not be shown if the settings page has already been submitted.
1316  */
1317 function settings_errors( $setting = '', $sanitize = FALSE, $hide_on_update = FALSE ) {
1318
1319         if ($hide_on_update AND $_GET['settings-updated']) return;
1320
1321         $settings_errors = get_settings_errors( $setting, $sanitize );
1322
1323         if ( !is_array($settings_errors) ) return;
1324
1325         $output = '';
1326         foreach ( $settings_errors as $key => $details ) {
1327                 $css_id = 'setting-error-' . $details['code'];
1328                 $css_class = $details['type'] . ' settings-error';
1329                 $output .= "<div id='$css_id' class='$css_class'> \n";
1330                 $output .= "<p><strong>{$details['message']}</strong></p>";
1331                 $output .= "</div> \n";
1332         }
1333         echo $output;
1334 }
1335
1336 /**
1337  * {@internal Missing Short Description}}
1338  *
1339  * @since 2.7.0
1340  *
1341  * @param unknown_type $found_action
1342  */
1343 function find_posts_div($found_action = '') {
1344 ?>
1345         <div id="find-posts" class="find-box" style="display:none;">
1346                 <div id="find-posts-head" class="find-box-head"><?php _e('Find Posts or Pages'); ?></div>
1347                 <div class="find-box-inside">
1348                         <div class="find-box-search">
1349                                 <?php if ( $found_action ) { ?>
1350                                         <input type="hidden" name="found_action" value="<?php echo esc_attr($found_action); ?>" />
1351                                 <?php } ?>
1352
1353                                 <input type="hidden" name="affected" id="affected" value="" />
1354                                 <?php wp_nonce_field( 'find-posts', '_ajax_nonce', false ); ?>
1355                                 <label class="screen-reader-text" for="find-posts-input"><?php _e( 'Search' ); ?></label>
1356                                 <input type="text" id="find-posts-input" name="ps" value="" />
1357                                 <input type="button" id="find-posts-search" value="<?php esc_attr_e( 'Search' ); ?>" class="button" /><br />
1358
1359                                 <?php
1360                                 $post_types = get_post_types( array('public' => true), 'objects' );
1361                                 foreach ( $post_types as $post ) {
1362                                         if ( 'attachment' == $post->name )
1363                                                 continue;
1364                                 ?>
1365                                 <input type="radio" name="find-posts-what" id="find-posts-<?php echo esc_attr($post->name); ?>" value="<?php echo esc_attr($post->name); ?>" <?php checked($post->name,  'post'); ?> />
1366                                 <label for="find-posts-<?php echo esc_attr($post->name); ?>"><?php echo $post->label; ?></label>
1367                                 <?php
1368                                 } ?>
1369                         </div>
1370                         <div id="find-posts-response"></div>
1371                 </div>
1372                 <div class="find-box-buttons">
1373                         <input id="find-posts-close" type="button" class="button alignleft" value="<?php esc_attr_e('Close'); ?>" />
1374                         <?php submit_button( __( 'Select' ), 'button-primary alignright', 'find-posts-submit', false ); ?>
1375                 </div>
1376         </div>
1377 <?php
1378 }
1379
1380 /**
1381  * Display the post password.
1382  *
1383  * The password is passed through {@link esc_attr()} to ensure that it
1384  * is safe for placing in an html attribute.
1385  *
1386  * @uses attr
1387  * @since 2.7.0
1388  */
1389 function the_post_password() {
1390         global $post;
1391         if ( isset( $post->post_password ) ) echo esc_attr( $post->post_password );
1392 }
1393
1394 /**
1395  * {@internal Missing Short Description}}
1396  *
1397  * @since 2.7.0
1398  */
1399 function favorite_actions( $screen = null ) {
1400         $default_action = false;
1401
1402         if ( is_string($screen) )
1403                 $screen = convert_to_screen($screen);
1404
1405         if ( $screen->is_user )
1406                 return;
1407
1408         if ( isset($screen->post_type) ) {
1409                 $post_type_object = get_post_type_object($screen->post_type);
1410                 if ( 'add' != $screen->action )
1411                         $default_action = array('post-new.php?post_type=' . $post_type_object->name => array($post_type_object->labels->new_item, $post_type_object->cap->edit_posts));
1412                 else
1413                         $default_action = array('edit.php?post_type=' . $post_type_object->name => array($post_type_object->labels->name, $post_type_object->cap->edit_posts));
1414         }
1415
1416         if ( !$default_action ) {
1417                 if ( $screen->is_network ) {
1418                         $default_action = array('sites.php' => array( __('Sites'), 'manage_sites'));
1419                 } else {
1420                         switch ( $screen->id ) {
1421                                 case 'upload':
1422                                         $default_action = array('media-new.php' => array(__('New Media'), 'upload_files'));
1423                                         break;
1424                                 case 'media':
1425                                         $default_action = array('upload.php' => array(__('Edit Media'), 'upload_files'));
1426                                         break;
1427                                 case 'link-manager':
1428                                 case 'link':
1429                                         if ( 'add' != $screen->action )
1430                                                 $default_action = array('link-add.php' => array(__('New Link'), 'manage_links'));
1431                                         else
1432                                                 $default_action = array('link-manager.php' => array(__('Edit Links'), 'manage_links'));
1433                                         break;
1434                                 case 'users':
1435                                         $default_action = array('user-new.php' => array(__('New User'), 'create_users'));
1436                                         break;
1437                                 case 'user':
1438                                         $default_action = array('users.php' => array(__('Edit Users'), 'edit_users'));
1439                                         break;
1440                                 case 'plugins':
1441                                         $default_action = array('plugin-install.php' => array(__('Install Plugins'), 'install_plugins'));
1442                                         break;
1443                                 case 'plugin-install':
1444                                         $default_action = array('plugins.php' => array(__('Manage Plugins'), 'activate_plugins'));
1445                                         break;
1446                                 case 'themes':
1447                                         $default_action = array('theme-install.php' => array(__('Install Themes'), 'install_themes'));
1448                                         break;
1449                                 case 'theme-install':
1450                                         $default_action = array('themes.php' => array(__('Manage Themes'), 'switch_themes'));
1451                                         break;
1452                                 default:
1453                                         $default_action = array('post-new.php' => array(__('New Post'), 'edit_posts'));
1454                                         break;
1455                         }
1456                 }
1457         }
1458
1459         if ( !$screen->is_network ) {
1460                 $actions = array(
1461                         'post-new.php' => array(__('New Post'), 'edit_posts'),
1462                         'edit.php?post_status=draft' => array(__('Drafts'), 'edit_posts'),
1463                         'post-new.php?post_type=page' => array(__('New Page'), 'edit_pages'),
1464                         'media-new.php' => array(__('Upload'), 'upload_files'),
1465                         'edit-comments.php' => array(__('Comments'), 'moderate_comments')
1466                         );
1467         } else {
1468                 $actions = array(
1469                         'sites.php' => array( __('Sites'), 'manage_sites'),
1470                         'users.php' => array( __('Users'), 'manage_network_users')
1471                 );
1472         }
1473
1474         $default_key = array_keys($default_action);
1475         $default_key = $default_key[0];
1476         if ( isset($actions[$default_key]) )
1477                 unset($actions[$default_key]);
1478         $actions = array_merge($default_action, $actions);
1479         $actions = apply_filters( 'favorite_actions', $actions, $screen );
1480
1481         $allowed_actions = array();
1482         foreach ( $actions as $action => $data ) {
1483                 if ( current_user_can($data[1]) )
1484                         $allowed_actions[$action] = $data[0];
1485         }
1486
1487         if ( empty($allowed_actions) )
1488                 return;
1489
1490         $first = array_keys($allowed_actions);
1491         $first = $first[0];
1492         echo '<div id="favorite-actions">';
1493         echo '<div id="favorite-first"><a href="' . $first . '">' . $allowed_actions[$first] . '</a></div><div id="favorite-toggle"><br /></div>';
1494         echo '<div id="favorite-inside">';
1495
1496         array_shift($allowed_actions);
1497
1498         foreach ( $allowed_actions as $action => $label) {
1499                 echo "<div class='favorite-action'><a href='$action'>";
1500                 echo $label;
1501                 echo "</a></div>\n";
1502         }
1503         echo "</div></div>\n";
1504 }
1505
1506 /**
1507  * Get the post title.
1508  *
1509  * The post title is fetched and if it is blank then a default string is
1510  * returned.
1511  *
1512  * @since 2.7.0
1513  * @param int $post_id The post id. If not supplied the global $post is used.
1514  * @return string The post title if set
1515  */
1516 function _draft_or_post_title( $post_id = 0 ) {
1517         $title = get_the_title($post_id);
1518         if ( empty($title) )
1519                 $title = __('(no title)');
1520         return $title;
1521 }
1522
1523 /**
1524  * Display the search query.
1525  *
1526  * A simple wrapper to display the "s" parameter in a GET URI. This function
1527  * should only be used when {@link the_search_query()} cannot.
1528  *
1529  * @uses attr
1530  * @since 2.7.0
1531  *
1532  */
1533 function _admin_search_query() {
1534         echo isset($_REQUEST['s']) ? esc_attr( stripslashes( $_REQUEST['s'] ) ) : '';
1535 }
1536
1537 /**
1538  * Generic Iframe header for use with Thickbox
1539  *
1540  * @since 2.7.0
1541  * @param string $title Title of the Iframe page.
1542  * @param bool $limit_styles Limit styles to colour-related styles only (unless others are enqueued).
1543  *
1544  */
1545 function iframe_header( $title = '', $limit_styles = false ) {
1546         show_admin_bar( false );
1547         global $hook_suffix, $current_screen, $current_user, $admin_body_class, $wp_locale;
1548         $admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix);
1549         $admin_body_class .= ' iframe';
1550
1551 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1552 <html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
1553 <head>
1554 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
1555 <title><?php bloginfo('name') ?> &rsaquo; <?php echo $title ?> &#8212; <?php _e('WordPress'); ?></title>
1556 <?php
1557 wp_enqueue_style( 'global' );
1558 if ( ! $limit_styles )
1559         wp_enqueue_style( 'wp-admin' );
1560 wp_enqueue_style( 'colors' );
1561 ?>
1562 <script type="text/javascript">
1563 //<![CDATA[
1564 addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
1565 function tb_close(){var win=window.dialogArguments||opener||parent||top;win.tb_remove();}
1566 var userSettings = {
1567                 'url': '<?php echo SITECOOKIEPATH; ?>',
1568                 'uid': '<?php if ( ! isset($current_user) ) $current_user = wp_get_current_user(); echo $current_user->ID; ?>',
1569                 'time':'<?php echo time() ?>'
1570         },
1571         ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>',
1572         pagenow = '<?php echo $current_screen->id; ?>',
1573         typenow = '<?php if ( isset($current_screen->post_type) ) echo $current_screen->post_type; ?>',
1574         adminpage = '<?php echo $admin_body_class; ?>',
1575         thousandsSeparator = '<?php echo addslashes( $wp_locale->number_format['thousands_sep'] ); ?>',
1576         decimalPoint = '<?php echo addslashes( $wp_locale->number_format['decimal_point'] ); ?>',
1577         isRtl = <?php echo (int) is_rtl(); ?>;
1578 //]]>
1579 </script>
1580 <?php
1581 do_action('admin_enqueue_scripts', $hook_suffix);
1582 do_action("admin_print_styles-$hook_suffix");
1583 do_action('admin_print_styles');
1584 do_action("admin_print_scripts-$hook_suffix");
1585 do_action('admin_print_scripts');
1586 do_action("admin_head-$hook_suffix");
1587 do_action('admin_head');
1588 ?>
1589 </head>
1590 <body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?>  class="no-js <?php echo $admin_body_class; ?>">
1591 <script type="text/javascript">
1592 //<![CDATA[
1593 (function(){
1594 var c = document.body.className;
1595 c = c.replace(/no-js/, 'js');
1596 document.body.className = c;
1597 })();
1598 //]]>
1599 </script>
1600 <?php
1601 }
1602
1603 /**
1604  * Generic Iframe footer for use with Thickbox
1605  *
1606  * @since 2.7.0
1607  *
1608  */
1609 function iframe_footer() {
1610         //We're going to hide any footer output on iframe pages, but run the hooks anyway since they output Javascript or other needed content. ?>
1611         <div class="hidden">
1612 <?php
1613         do_action('admin_footer', '');
1614         do_action('admin_print_footer_scripts'); ?>
1615         </div>
1616 <script type="text/javascript">if(typeof wpOnload=="function")wpOnload();</script>
1617 </body>
1618 </html>
1619 <?php
1620 }
1621
1622 function _post_states($post) {
1623         $post_states = array();
1624         if ( isset($_GET['post_status']) )
1625                 $post_status = $_GET['post_status'];
1626         else
1627                 $post_status = '';
1628
1629         if ( !empty($post->post_password) )
1630                 $post_states[] = __('Password protected');
1631         if ( 'private' == $post->post_status && 'private' != $post_status )
1632                 $post_states[] = __('Private');
1633         if ( 'draft' == $post->post_status && 'draft' != $post_status )
1634                 $post_states[] = __('Draft');
1635         if ( 'pending' == $post->post_status && 'pending' != $post_status )
1636                 /* translators: post state */
1637                 $post_states[] = _x('Pending', 'post state');
1638         if ( is_sticky($post->ID) )
1639                 $post_states[] = __('Sticky');
1640
1641         $post_states = apply_filters( 'display_post_states', $post_states );
1642
1643         if ( ! empty($post_states) ) {
1644                 $state_count = count($post_states);
1645                 $i = 0;
1646                 echo ' - ';
1647                 foreach ( $post_states as $state ) {
1648                         ++$i;
1649                         ( $i == $state_count ) ? $sep = '' : $sep = ', ';
1650                         echo "<span class='post-state'>$state$sep</span>";
1651                 }
1652         }
1653
1654         if ( get_post_format( $post->ID ) )
1655                 echo ' - <span class="post-state-format">' . get_post_format_string( get_post_format( $post->ID ) ) . '</span>';
1656 }
1657
1658 /**
1659  * Convert a screen string to a screen object
1660  *
1661  * @since 3.0.0
1662  *
1663  * @param string $screen The name of the screen
1664  * @return object An object containing the safe screen name and id
1665  */
1666 function convert_to_screen( $screen ) {
1667         $screen = str_replace( array('.php', '-new', '-add', '-network', '-user' ), '', $screen);
1668
1669         if ( is_network_admin() )
1670                 $screen .= '-network';
1671         elseif ( is_user_admin() )
1672                 $screen .= '-user';
1673
1674         $screen = (string) apply_filters( 'screen_meta_screen', $screen );
1675         $screen = (object) array('id' => $screen, 'base' => $screen);
1676         return $screen;
1677 }
1678
1679 function screen_meta($screen) {
1680         global $wp_meta_boxes, $_wp_contextual_help, $wp_list_table, $wp_current_screen_options;
1681
1682         if ( is_string($screen) )
1683                 $screen = convert_to_screen($screen);
1684
1685         $columns = get_column_headers( $screen );
1686         $hidden = get_hidden_columns( $screen );
1687
1688         $meta_screens = array('index' => 'dashboard');
1689
1690         if ( isset($meta_screens[$screen->id]) ) {
1691                 $screen->id = $meta_screens[$screen->id];
1692                 $screen->base = $screen->id;
1693         }
1694
1695         $show_screen = false;
1696         if ( !empty($wp_meta_boxes[$screen->id]) || !empty($columns) )
1697                 $show_screen = true;
1698
1699         $screen_options = screen_options($screen);
1700         if ( $screen_options )
1701                 $show_screen = true;
1702
1703         if ( !isset($_wp_contextual_help) )
1704                 $_wp_contextual_help = array();
1705
1706         $settings = apply_filters('screen_settings', '', $screen);
1707
1708         switch ( $screen->id ) {
1709                 case 'widgets':
1710                         $settings = '<p><a id="access-on" href="widgets.php?widgets-access=on">' . __('Enable accessibility mode') . '</a><a id="access-off" href="widgets.php?widgets-access=off">' . __('Disable accessibility mode') . "</a></p>\n";
1711                         $show_screen = true;
1712                         break;
1713         }
1714         if ( ! empty( $settings ) )
1715                 $show_screen = true;
1716
1717         if ( !empty($wp_current_screen_options) )
1718                 $show_screen = true;
1719
1720 ?>
1721 <div id="screen-meta">
1722 <?php if ( $show_screen ) : ?>
1723 <div id="screen-options-wrap" class="hidden">
1724         <form id="adv-settings" action="" method="post">
1725         <?php if ( isset($wp_meta_boxes[$screen->id]) ) : ?>
1726                 <h5><?php _ex('Show on screen', 'Metaboxes') ?></h5>
1727                 <div class="metabox-prefs">
1728                         <?php meta_box_prefs($screen); ?>
1729                         <br class="clear" />
1730                 </div>
1731                 <?php endif;
1732                 if ( ! empty($columns) ) : ?>
1733                 <h5><?php echo ( isset( $columns['_title'] ) ?  $columns['_title'] :  _x('Show on screen', 'Columns') ) ?></h5>
1734                 <div class="metabox-prefs">
1735 <?php
1736         $special = array('_title', 'cb', 'comment', 'media', 'name', 'title', 'username', 'blogname');
1737
1738         foreach ( $columns as $column => $title ) {
1739                 // Can't hide these for they are special
1740                 if ( in_array( $column, $special ) )
1741                         continue;
1742                 if ( empty( $title ) )
1743                         continue;
1744
1745                 if ( 'comments' == $column )
1746                         $title = __( 'Comments' );
1747                 $id = "$column-hide";
1748                 echo '<label for="' . $id . '">';
1749                 echo '<input class="hide-column-tog" name="' . $id . '" type="checkbox" id="' . $id . '" value="' . $column . '"' . checked( !in_array($column, $hidden), true, false ) . ' />';
1750                 echo "$title</label>\n";
1751         }
1752 ?>
1753                         <br class="clear" />
1754                 </div>
1755         <?php endif;
1756         echo screen_layout($screen);
1757
1758         if ( !empty( $screen_options ) ) {
1759                 ?>
1760                 <h5><?php _ex('Show on screen', 'Screen Options') ?></h5>
1761                 <?php
1762         }
1763
1764         echo $screen_options;
1765         echo $settings; ?>
1766 <div><?php wp_nonce_field( 'screen-options-nonce', 'screenoptionnonce', false ); ?></div>
1767 </form>
1768 </div>
1769
1770 <?php endif; // $show_screen
1771
1772         $_wp_contextual_help = apply_filters('contextual_help_list', $_wp_contextual_help, $screen);
1773         ?>
1774         <div id="contextual-help-wrap" class="hidden">
1775         <?php
1776         $contextual_help = '';
1777         if ( isset($_wp_contextual_help[$screen->id]) ) {
1778                 $contextual_help .= '<div class="metabox-prefs">' . $_wp_contextual_help[$screen->id] . "</div>\n";
1779         } else {
1780                 $contextual_help .= '<div class="metabox-prefs">';
1781                 $default_help = __('<a href="http://codex.wordpress.org/" target="_blank">Documentation</a>');
1782                 $default_help .= '<br />';
1783                 $default_help .= __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>');
1784                 $contextual_help .= apply_filters('default_contextual_help', $default_help);
1785                 $contextual_help .= "</div>\n";
1786         }
1787
1788         echo apply_filters('contextual_help', $contextual_help, $screen->id, $screen);
1789         ?>
1790         </div>
1791
1792 <div id="screen-meta-links">
1793 <div id="contextual-help-link-wrap" class="hide-if-no-js screen-meta-toggle">
1794 <a href="#contextual-help" id="contextual-help-link" class="show-settings"><?php _e('Help') ?></a>
1795 </div>
1796 <?php if ( $show_screen ) { ?>
1797 <div id="screen-options-link-wrap" class="hide-if-no-js screen-meta-toggle">
1798 <a href="#screen-options" id="show-settings-link" class="show-settings"><?php _e('Screen Options') ?></a>
1799 </div>
1800 <?php } ?>
1801 </div>
1802 </div>
1803 <?php
1804 }
1805
1806 /**
1807  * Add contextual help text for a page
1808  *
1809  * @since 2.7.0
1810  *
1811  * @param string $screen The handle for the screen to add help to.  This is usually the hook name returned by the add_*_page() functions.
1812  * @param string $help Arbitrary help text
1813  */
1814 function add_contextual_help($screen, $help) {
1815         global $_wp_contextual_help;
1816
1817         if ( is_string($screen) )
1818                 $screen = convert_to_screen($screen);
1819
1820         if ( !isset($_wp_contextual_help) )
1821                 $_wp_contextual_help = array();
1822
1823         $_wp_contextual_help[$screen->id] = $help;
1824 }
1825
1826 function screen_layout($screen) {
1827         global $screen_layout_columns, $wp_current_screen_options;
1828
1829         if ( is_string($screen) )
1830                 $screen = convert_to_screen($screen);
1831
1832         // Back compat for plugins using the filter instead of add_screen_option()
1833         $columns = apply_filters('screen_layout_columns', array(), $screen->id, $screen);
1834         if ( !empty($columns) && isset($columns[$screen->id]) )
1835                 add_screen_option('layout_columns', array('max' => $columns[$screen->id]) );
1836
1837         if ( !isset($wp_current_screen_options['layout_columns']) ) {
1838                 $screen_layout_columns = 0;
1839                 return '';
1840         }
1841
1842         $screen_layout_columns = get_user_option("screen_layout_$screen->id");
1843         $num = $wp_current_screen_options['layout_columns']['max'];
1844
1845         if ( ! $screen_layout_columns ) {
1846                 if ( isset($wp_current_screen_options['layout_columns']['default']) )
1847                         $screen_layout_columns = $wp_current_screen_options['layout_columns']['default'];
1848                 else
1849                         $screen_layout_columns = 2;
1850         }
1851
1852         $i = 1;
1853         $return = '<h5>' . __('Screen Layout') . "</h5>\n<div class='columns-prefs'>" . __('Number of Columns:') . "\n";
1854         while ( $i <= $num ) {
1855                 $return .= "<label><input type='radio' name='screen_columns' value='$i'" . ( ($screen_layout_columns == $i) ? " checked='checked'" : "" ) . " /> $i</label>\n";
1856                 ++$i;
1857         }
1858         $return .= "</div>\n";
1859         return $return;
1860 }
1861
1862 /**
1863  * Register and configure an admin screen option
1864  *
1865  * @since 3.1.0
1866  *
1867  * @param string $option An option name.
1868  * @param mixed $args Option dependent arguments
1869  * @return void
1870  */
1871 function add_screen_option( $option, $args = array() ) {
1872         global $wp_current_screen_options;
1873
1874         if ( !isset($wp_current_screen_options) )
1875                 $wp_current_screen_options = array();
1876
1877         $wp_current_screen_options[$option] = $args;
1878 }
1879
1880 function screen_options($screen) {
1881         global $wp_current_screen_options;
1882
1883         if ( is_string($screen) )
1884                 $screen = convert_to_screen($screen);
1885
1886         if ( !isset($wp_current_screen_options['per_page']) )
1887                 return '';
1888
1889         $per_page_label = $wp_current_screen_options['per_page']['label'];
1890
1891         if ( empty($wp_current_screen_options['per_page']['option']) ) {
1892                 $option = str_replace( '-', '_', "{$screen->id}_per_page" );
1893         } else {
1894                 $option = $wp_current_screen_options['per_page']['option'];
1895         }
1896
1897         $per_page = (int) get_user_option( $option );
1898         if ( empty( $per_page ) || $per_page < 1 ) {
1899                 if ( isset($wp_current_screen_options['per_page']['default']) )
1900                         $per_page = $wp_current_screen_options['per_page']['default'];
1901                 else
1902                         $per_page = 20;
1903         }
1904
1905         if ( 'edit_comments_per_page' == $option )
1906                 $per_page = apply_filters( 'comments_per_page', $per_page, isset($_REQUEST['comment_status']) ? $_REQUEST['comment_status'] : 'all' );
1907         elseif ( 'categories_per_page' == $option )
1908                 $per_page = apply_filters( 'edit_categories_per_page', $per_page );
1909         else
1910                 $per_page = apply_filters( $option, $per_page );
1911
1912         // Back compat
1913         if ( isset( $screen->post_type ) )
1914                 $per_page = apply_filters( 'edit_posts_per_page', $per_page, $screen->post_type );
1915
1916         $return = "<div class='screen-options'>\n";
1917         if ( !empty($per_page_label) )
1918                 $return .= "<input type='text' class='screen-per-page' name='wp_screen_options[value]' id='$option' maxlength='3' value='$per_page' /> <label for='$option'>$per_page_label</label>\n";
1919         $return .= get_submit_button( __( 'Apply' ), 'button', 'screen-options-apply', false );
1920         $return .= "<input type='hidden' name='wp_screen_options[option]' value='" . esc_attr($option) . "' />";
1921         $return .= "</div>\n";
1922         return $return;
1923 }
1924
1925 function screen_icon($screen = '') {
1926         global $current_screen, $typenow;
1927
1928         if ( empty($screen) )
1929                 $screen = $current_screen;
1930         elseif ( is_string($screen) )
1931                 $name = $screen;
1932
1933         $class = 'icon32';
1934
1935         if ( empty($name) ) {
1936                 if ( !empty($screen->parent_base) )
1937                         $name = $screen->parent_base;
1938                 else
1939                         $name = $screen->base;
1940
1941                 if ( 'edit' == $name && isset($screen->post_type) && 'page' == $screen->post_type )
1942                         $name = 'edit-pages';
1943
1944                 $post_type = '';
1945                 if ( isset( $screen->post_type ) )
1946                         $post_type = $screen->post_type;
1947                 elseif ( $current_screen == $screen )
1948                         $post_type = $typenow;
1949                 if ( $post_type )
1950                         $class .= ' ' . sanitize_html_class( 'icon32-posts-' . $post_type );
1951         }
1952
1953 ?>
1954         <div id="icon-<?php echo $name; ?>" class="<?php echo $class; ?>"><br /></div>
1955 <?php
1956 }
1957
1958 /**
1959  * Test support for compressing JavaScript from PHP
1960  *
1961  * Outputs JavaScript that tests if compression from PHP works as expected
1962  * and sets an option with the result. Has no effect when the current user
1963  * is not an administrator. To run the test again the option 'can_compress_scripts'
1964  * has to be deleted.
1965  *
1966  * @since 2.8.0
1967  */
1968 function compression_test() {
1969 ?>
1970         <script type="text/javascript">
1971         /* <![CDATA[ */
1972         var testCompression = {
1973                 get : function(test) {
1974                         var x;
1975                         if ( window.XMLHttpRequest ) {
1976                                 x = new XMLHttpRequest();
1977                         } else {
1978                                 try{x=new ActiveXObject('Msxml2.XMLHTTP');}catch(e){try{x=new ActiveXObject('Microsoft.XMLHTTP');}catch(e){};}
1979                         }
1980
1981                         if (x) {
1982                                 x.onreadystatechange = function() {
1983                                         var r, h;
1984                                         if ( x.readyState == 4 ) {
1985                                                 r = x.responseText.substr(0, 18);
1986                                                 h = x.getResponseHeader('Content-Encoding');
1987                                                 testCompression.check(r, h, test);
1988                                         }
1989                                 }
1990
1991                                 x.open('GET', ajaxurl + '?action=wp-compression-test&test='+test+'&'+(new Date()).getTime(), true);
1992                                 x.send('');
1993                         }
1994                 },
1995
1996                 check : function(r, h, test) {
1997                         if ( ! r && ! test )
1998                                 this.get(1);
1999
2000                         if ( 1 == test ) {
2001                                 if ( h && ( h.match(/deflate/i) || h.match(/gzip/i) ) )
2002                                         this.get('no');
2003                                 else
2004                                         this.get(2);
2005
2006                                 return;
2007                         }
2008
2009                         if ( 2 == test ) {
2010                                 if ( '"wpCompressionTest' == r )
2011                                         this.get('yes');
2012                                 else
2013                                         this.get('no');
2014                         }
2015                 }
2016         };
2017         testCompression.check();
2018         /* ]]> */
2019         </script>
2020 <?php
2021 }
2022
2023 /**
2024  *  Get the current screen object
2025  *
2026  *  @since 3.1.0
2027  *
2028  * @return object Current screen object
2029  */
2030 function get_current_screen() {
2031         global $current_screen;
2032
2033         if ( !isset($current_screen) )
2034                 return null;
2035
2036         return $current_screen;
2037 }
2038
2039 /**
2040  * Set the current screen object
2041  *
2042  * @since 3.0.0
2043  *
2044  * @uses $current_screen
2045  *
2046  * @param string $id Screen id, optional.
2047  */
2048 function set_current_screen( $id =  '' ) {
2049         global $current_screen, $hook_suffix, $typenow, $taxnow;
2050
2051         $action = '';
2052
2053         if ( empty($id) ) {
2054                 $current_screen = $hook_suffix;
2055                 $current_screen = str_replace('.php', '', $current_screen);
2056                 if ( preg_match('/-add|-new$/', $current_screen) )
2057                         $action = 'add';
2058                 $current_screen = str_replace('-new', '', $current_screen);
2059                 $current_screen = str_replace('-add', '', $current_screen);
2060                 $current_screen = array('id' => $current_screen, 'base' => $current_screen);
2061         } else {
2062                 $id = sanitize_key($id);
2063                 if ( false !== strpos($id, '-') ) {
2064                         list( $id, $typenow ) = explode('-', $id, 2);
2065                         if ( taxonomy_exists( $typenow ) ) {
2066                                 $id = 'edit-tags';
2067                                 $taxnow = $typenow;
2068                                 $typenow = '';
2069                         }
2070                 }
2071                 $current_screen = array('id' => $id, 'base' => $id);
2072         }
2073
2074         $current_screen = (object) $current_screen;
2075
2076         $current_screen->action = $action;
2077
2078         // Map index to dashboard
2079         if ( 'index' == $current_screen->base )
2080                 $current_screen->base = 'dashboard';
2081         if ( 'index' == $current_screen->id )
2082                 $current_screen->id = 'dashboard';
2083
2084         if ( 'edit' == $current_screen->id ) {
2085                 if ( empty($typenow) )
2086                         $typenow = 'post';
2087                 $current_screen->id .= '-' . $typenow;
2088                 $current_screen->post_type = $typenow;
2089         } elseif ( 'post' == $current_screen->id ) {
2090                 if ( empty($typenow) )
2091                         $typenow = 'post';
2092                 $current_screen->id = $typenow;
2093                 $current_screen->post_type = $typenow;
2094         } elseif ( 'edit-tags' == $current_screen->id ) {
2095                 if ( empty($taxnow) )
2096                         $taxnow = 'post_tag';
2097                 $current_screen->id = 'edit-' . $taxnow;
2098                 $current_screen->taxonomy = $taxnow;
2099         }
2100
2101         $current_screen->is_network = is_network_admin();
2102         $current_screen->is_user = is_user_admin();
2103
2104         if ( $current_screen->is_network ) {
2105                 $current_screen->base .= '-network';
2106                 $current_screen->id .= '-network';
2107         } elseif ( $current_screen->is_user ) {
2108                 $current_screen->base .= '-user';
2109                 $current_screen->id .= '-user';
2110         }
2111
2112         $current_screen = apply_filters('current_screen', $current_screen);
2113 }
2114
2115 /**
2116  * Echos a submit button, with provided text and appropriate class
2117  *
2118  * @since 3.1.0
2119  *
2120  * @param string $text The text of the button (defaults to 'Save Changes')
2121  * @param string $type The type of button. One of: primary, secondary, delete
2122  * @param string $name The HTML name of the submit button. Defaults to "submit". If no id attribute
2123  *               is given in $other_attributes below, $name will be used as the button's id.
2124  * @param bool $wrap True if the output button should be wrapped in a paragraph tag,
2125  *                         false otherwise. Defaults to true
2126  * @param array|string $other_attributes Other attributes that should be output with the button,
2127  *                     mapping attributes to their values, such as array( 'tabindex' => '1' ).
2128  *                     These attributes will be ouput as attribute="value", such as tabindex="1".
2129  *                     Defaults to no other attributes. Other attributes can also be provided as a
2130  *                     string such as 'tabindex="1"', though the array format is typically cleaner.
2131  */
2132 function submit_button( $text = NULL, $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = NULL ) {
2133         echo get_submit_button( $text, $type, $name, $wrap, $other_attributes );
2134 }
2135
2136 /**
2137  * Returns a submit button, with provided text and appropriate class
2138  *
2139  * @since 3.1.0
2140  *
2141  * @param string $text The text of the button (defaults to 'Save Changes')
2142  * @param string $type The type of button. One of: primary, secondary, delete
2143  * @param string $name The HTML name of the submit button. Defaults to "submit". If no id attribute
2144  *               is given in $other_attributes below, $name will be used as the button's id.
2145  * @param bool $wrap True if the output button should be wrapped in a paragraph tag,
2146  *                         false otherwise. Defaults to true
2147  * @param array|string $other_attributes Other attributes that should be output with the button,
2148  *                     mapping attributes to their values, such as array( 'tabindex' => '1' ).
2149  *                     These attributes will be ouput as attribute="value", such as tabindex="1".
2150  *                     Defaults to no other attributes. Other attributes can also be provided as a
2151  *                     string such as 'tabindex="1"', though the array format is typically cleaner.
2152  */
2153 function get_submit_button( $text = NULL, $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = NULL ) {
2154         switch ( $type ) :
2155                 case 'primary' :
2156                 case 'secondary' :
2157                         $class = 'button-' . $type;
2158                         break;
2159                 case 'delete' :
2160                         $class = 'button-secondary delete';
2161                         break;
2162                 default :
2163                         $class = $type; // Custom cases can just pass in the classes they want to be used
2164         endswitch;
2165         $text = ( NULL == $text ) ? __( 'Save Changes' ) : $text;
2166
2167         // Default the id attribute to $name unless an id was specifically provided in $other_attributes
2168         $id = $name;
2169         if ( is_array( $other_attributes ) && isset( $other_attributes['id'] ) ) {
2170                 $id = $other_attributes['id'];
2171                 unset( $other_attributes['id'] );
2172         }
2173
2174         $attributes = '';
2175         if ( is_array( $other_attributes ) ) {
2176                 foreach ( $other_attributes as $attribute => $value ) {
2177                         $attributes .= $attribute . '="' . esc_attr( $value ) . '" '; // Trailing space is important
2178                 }
2179         } else if ( !empty( $other_attributes ) ) { // Attributes provided as a string
2180                 $attributes = $other_attributes;
2181         }
2182
2183         $button = '<input type="submit" name="' . esc_attr( $name ) . '" id="' . esc_attr( $id ) . '" class="' . esc_attr( $class );
2184         $button .= '" value="' . esc_attr( $text ) . '" ' . $attributes . ' />';
2185
2186         if ( $wrap ) {
2187                 $button = '<p class="submit">' . $button . '</p>';
2188         }
2189
2190         return $button;
2191 }
2192