WordPress 3.0 beta 1 documentation kindly provided to you by Hay Kranen
| [ Index ] |
PHP Cross Reference of WordPress 3.0 beta 1 |
|
| [ Index ] [ Variables ] [ Functions ] [ Classes ] [ Constants ] [ Statistics ] | ||
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Edit Posts Administration Panel. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 8 9 /** WordPress Administration Bootstrap */ 10 require_once ('admin.php'); 11 12 if ( !isset($_GET['post_type']) ) 13 $post_type = 'post'; 14 elseif ( in_array( $_GET['post_type'], get_post_types( array('public' => true ) ) ) ) 15 $post_type = $_GET['post_type']; 16 else 17 wp_die( __('Invalid post type') ); 18 $_GET['post_type'] = $post_type; 19 20 $post_type_object = get_post_type_object($post_type); 21 22 if ( !current_user_can($post_type_object->edit_type_cap) ) 23 wp_die(__('Cheatin’ uh?')); 24 25 // Back-compat for viewing comments of an entry 26 if ( $_redirect = intval( max( @$_GET['p'], @$_GET['attachment_id'], @$_GET['page_id'] ) ) ) { 27 wp_redirect( admin_url('edit-comments.php?p=' . $_redirect ) ); 28 exit; 29 } else { 30 unset( $_redirect ); 31 } 32 33 if ( 'post' != $post_type ) { 34 $parent_file = "edit.php?post_type=$post_type"; 35 $submenu_file = "edit.php?post_type=$post_type"; 36 $post_new_file = "post-new.php?post_type=$post_type"; 37 } else { 38 $parent_file = 'edit.php'; 39 $submenu_file = 'edit.php'; 40 $post_new_file = 'post-new.php'; 41 } 42 43 $pagenum = isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 0; 44 if ( empty($pagenum) ) 45 $pagenum = 1; 46 $per_page = 'edit_' . $post_type . '_per_page'; 47 $per_page = (int) get_user_option( $per_page ); 48 if ( empty( $per_page ) || $per_page < 1 ) 49 $per_page = 15; 50 // @todo filter based on type 51 $per_page = apply_filters( 'edit_posts_per_page', $per_page ); 52 53 // Handle bulk actions 54 if ( isset($_GET['doaction']) || isset($_GET['doaction2']) || isset($_GET['delete_all']) || isset($_GET['delete_all2']) || isset($_GET['bulk_edit']) ) { 55 check_admin_referer('bulk-posts'); 56 $sendback = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'ids'), wp_get_referer() ); 57 58 if ( strpos($sendback, 'post.php') !== false ) 59 $sendback = admin_url($post_new_file); 60 61 if ( isset($_GET['delete_all']) || isset($_GET['delete_all2']) ) { 62 $post_status = preg_replace('/[^a-z0-9_-]+/i', '', $_GET['post_status']); 63 $post_ids = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type=%s AND post_status = %s", $post_type, $post_status ) ); 64 $doaction = 'delete'; 65 } elseif ( ( $_GET['action'] != -1 || $_GET['action2'] != -1 ) && ( isset($_GET['post']) || isset($_GET['ids']) ) ) { 66 $post_ids = isset($_GET['post']) ? array_map( 'intval', (array) $_GET['post'] ) : explode(',', $_GET['ids']); 67 $doaction = ($_GET['action'] != -1) ? $_GET['action'] : $_GET['action2']; 68 } else { 69 wp_redirect( admin_url("edit.php?post_type=$post_type") ); 70 } 71 72 switch ( $doaction ) { 73 case 'trash': 74 $trashed = 0; 75 foreach( (array) $post_ids as $post_id ) { 76 if ( !current_user_can($post_type_object->delete_cap, $post_id) ) 77 wp_die( __('You are not allowed to move this item to the trash.') ); 78 79 if ( !wp_trash_post($post_id) ) 80 wp_die( __('Error in moving to trash...') ); 81 82 $trashed++; 83 } 84 $sendback = add_query_arg( array('trashed' => $trashed, 'ids' => join(',', $post_ids)), $sendback ); 85 break; 86 case 'untrash': 87 $untrashed = 0; 88 foreach( (array) $post_ids as $post_id ) { 89 if ( !current_user_can($post_type_object->delete_cap, $post_id) ) 90 wp_die( __('You are not allowed to restore this item from the trash.') ); 91 92 if ( !wp_untrash_post($post_id) ) 93 wp_die( __('Error in restoring from trash...') ); 94 95 $untrashed++; 96 } 97 $sendback = add_query_arg('untrashed', $untrashed, $sendback); 98 break; 99 case 'delete': 100 $deleted = 0; 101 foreach( (array) $post_ids as $post_id ) { 102 $post_del = & get_post($post_id); 103 104 if ( !current_user_can($post_type_object->delete_cap, $post_id) ) 105 wp_die( __('You are not allowed to delete this item.') ); 106 107 if ( $post_del->post_type == 'attachment' ) { 108 if ( ! wp_delete_attachment($post_id) ) 109 wp_die( __('Error in deleting...') ); 110 } else { 111 if ( !wp_delete_post($post_id) ) 112 wp_die( __('Error in deleting...') ); 113 } 114 $deleted++; 115 } 116 $sendback = add_query_arg('deleted', $deleted, $sendback); 117 break; 118 case 'edit': 119 $done = bulk_edit_posts($_GET); 120 121 if ( is_array($done) ) { 122 $done['updated'] = count( $done['updated'] ); 123 $done['skipped'] = count( $done['skipped'] ); 124 $done['locked'] = count( $done['locked'] ); 125 $sendback = add_query_arg( $done, $sendback ); 126 } 127 break; 128 } 129 130 if ( isset($_GET['action']) ) 131 $sendback = remove_query_arg( array('action', 'action2', 'cat', 'tags_input', 'post_author', 'comment_status', 'ping_status', '_status', 'post', 'bulk_edit', 'post_view'), $sendback ); 132 133 wp_redirect($sendback); 134 exit(); 135 } elseif ( ! empty($_GET['_wp_http_referer']) ) { 136 wp_redirect( remove_query_arg( array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI']) ) ); 137 exit; 138 } 139 140 $title = sprintf(__('Edit %s'), $post_type_object->label); 141 142 wp_enqueue_script('inline-edit-post'); 143 144 $user_posts = false; 145 if ( !current_user_can($post_type_object->edit_others_cap) ) { 146 $user_posts_count = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(1) FROM $wpdb->posts WHERE post_type = '%s' AND post_status != 'trash' AND post_author = %d", $post_type, $current_user->ID) ); 147 $user_posts = true; 148 if ( $user_posts_count && empty($_GET['post_status']) && empty($_GET['all_posts']) && empty($_GET['author']) ) 149 $_GET['author'] = $current_user->ID; 150 } 151 152 $avail_post_stati = wp_edit_posts_query(); 153 154 if ( $post_type_object->hierarchical ) 155 $num_pages = ceil($wp_query->post_count / $per_page); 156 else 157 $num_pages = $wp_query->max_num_pages; 158 159 require_once ('admin-header.php'); 160 161 if ( empty($_GET['mode']) ) 162 $mode = 'list'; 163 else 164 $mode = esc_attr($_GET['mode']); ?> 165 166 <div class="wrap"> 167 <?php screen_icon(); ?> 168 <h2><?php echo esc_html( $title ); ?> <a href="<?php echo $post_new_file ?>" class="button add-new-h2"><?php echo esc_html_x('Add New', 'post'); ?></a> <?php 169 if ( isset($_GET['s']) && $_GET['s'] ) 170 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( get_search_query() ) ); ?> 171 </h2> 172 173 <?php 174 if ( isset($_GET['posted']) && $_GET['posted'] ) : $_GET['posted'] = (int) $_GET['posted']; ?> 175 <div id="message" class="updated"><p><strong><?php _e('This has been saved.'); ?></strong> <a href="<?php echo get_permalink( $_GET['posted'] ); ?>"><?php _e('View Post'); ?></a> | <a href="<?php echo get_edit_post_link( $_GET['posted'] ); ?>"><?php _e('Edit Post'); ?></a></p></div> 176 <?php $_SERVER['REQUEST_URI'] = remove_query_arg(array('posted'), $_SERVER['REQUEST_URI']); 177 endif; ?> 178 179 <?php if ( isset($_GET['locked']) || isset($_GET['skipped']) || isset($_GET['updated']) || isset($_GET['deleted']) || isset($_GET['trashed']) || isset($_GET['untrashed']) ) { ?> 180 <div id="message" class="updated"><p> 181 <?php if ( isset($_GET['updated']) && (int) $_GET['updated'] ) { 182 printf( _n( '%s post updated.', '%s posts updated.', $_GET['updated'] ), number_format_i18n( $_GET['updated'] ) ); 183 unset($_GET['updated']); 184 } 185 186 if ( isset($_GET['skipped']) && (int) $_GET['skipped'] ) 187 unset($_GET['skipped']); 188 189 if ( isset($_GET['locked']) && (int) $_GET['locked'] ) { 190 printf( _n( '%s item not updated, somebody is editing it.', '%s items not updated, somebody is editing them.', $_GET['locked'] ), number_format_i18n( $_GET['locked'] ) ); 191 unset($_GET['locked']); 192 } 193 194 if ( isset($_GET['deleted']) && (int) $_GET['deleted'] ) { 195 printf( _n( 'Item permanently deleted.', '%s items permanently deleted.', $_GET['deleted'] ), number_format_i18n( $_GET['deleted'] ) ); 196 unset($_GET['deleted']); 197 } 198 199 if ( isset($_GET['trashed']) && (int) $_GET['trashed'] ) { 200 printf( _n( 'Item moved to the trash.', '%s items moved to the trash.', $_GET['trashed'] ), number_format_i18n( $_GET['trashed'] ) ); 201 $ids = isset($_GET['ids']) ? $_GET['ids'] : 0; 202 echo ' <a href="' . esc_url( wp_nonce_url( "edit.php?post_type=$post_type&doaction=undo&action=untrash&ids=$ids", "bulk-posts" ) ) . '">' . __('Undo') . '</a><br />'; 203 unset($_GET['trashed']); 204 } 205 206 if ( isset($_GET['untrashed']) && (int) $_GET['untrashed'] ) { 207 printf( _n( 'Item restored from the trash.', '%s items restored from the trash.', $_GET['untrashed'] ), number_format_i18n( $_GET['untrashed'] ) ); 208 unset($_GET['undeleted']); 209 } 210 211 $_SERVER['REQUEST_URI'] = remove_query_arg( array('locked', 'skipped', 'updated', 'deleted', 'trashed', 'untrashed'), $_SERVER['REQUEST_URI'] ); 212 ?> 213 </p></div> 214 <?php } ?> 215 216 <form id="posts-filter" action="<?php echo admin_url('edit.php'); ?>" method="get"> 217 218 <ul class="subsubsub"> 219 <?php 220 if ( empty($locked_post_status) ) : 221 $status_links = array(); 222 $num_posts = wp_count_posts( $post_type, 'readable' ); 223 $class = ''; 224 $allposts = ''; 225 226 if ( $user_posts ) { 227 if ( isset( $_GET['author'] ) && ( $_GET['author'] == $current_user->ID ) ) 228 $class = ' class="current"'; 229 $status_links[] = "<li><a href='edit.php?author=$current_user->ID'$class>" . sprintf( _nx( 'Mine <span class="count">(%s)</span>', 'Mine <span class="count">(%s)</span>', $user_posts_count, 'posts' ), number_format_i18n( $user_posts_count ) ) . '</a>'; 230 $allposts = '&all_posts=1'; 231 } 232 233 $total_posts = array_sum( (array) $num_posts ); 234 235 // Subtract post types that are not included in the admin all list. 236 foreach ( get_post_stati( array('show_in_admin_all_list' => false) ) as $state ) 237 $total_posts -= $num_posts->$state; 238 239 $class = empty($class) && empty($_GET['post_status']) ? ' class="current"' : ''; 240 $status_links[] = "<li><a href='edit.php?post_type=$post_type{$allposts}'$class>" . sprintf( _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $total_posts, 'posts' ), number_format_i18n( $total_posts ) ) . '</a>'; 241 242 foreach ( get_post_stati(array('show_in_admin_status_list' => true), 'objects') as $status ) { 243 $class = ''; 244 245 $status_name = $status->name; 246 247 if ( !in_array( $status_name, $avail_post_stati ) ) 248 continue; 249 250 if ( empty( $num_posts->$status_name ) ) 251 continue; 252 253 if ( isset($_GET['post_status']) && $status_name == $_GET['post_status'] ) 254 $class = ' class="current"'; 255 256 $status_links[] = "<li><a href='edit.php?post_status=$status_name&post_type=$post_type'$class>" . sprintf( _n( $status->label_count[0], $status->label_count[1], $num_posts->$status_name ), number_format_i18n( $num_posts->$status_name ) ) . '</a>'; 257 } 258 echo implode( " |</li>\n", $status_links ) . '</li>'; 259 unset( $status_links ); 260 endif; 261 ?> 262 </ul> 263 264 <p class="search-box"> 265 <label class="screen-reader-text" for="post-search-input"><?php printf( __( 'Search %s' ), $post_type_object->label ); ?>:</label> 266 <input type="text" id="post-search-input" name="s" value="<?php the_search_query(); ?>" /> 267 <input type="submit" value="<?php echo esc_attr( sprintf( __( 'Search %s' ), $post_type_object->label ) ); ?>" class="button" /> 268 </p> 269 270 <input type="hidden" name="post_status" class="post_status_page" value="<?php echo !empty($_GET['post_status']) ? esc_attr($_GET['post_status']) : 'all'; ?>" /> 271 <input type="hidden" name="post_type" class="post_type_page" value="<?php echo $post_type; ?>" /> 272 <input type="hidden" name="mode" value="<?php echo esc_attr($mode); ?>" /> 273 274 <?php if ( have_posts() ) { ?> 275 276 <div class="tablenav"> 277 <?php 278 $page_links = paginate_links( array( 279 'base' => add_query_arg( 'paged', '%#%' ), 280 'format' => '', 281 'prev_text' => __('«'), 282 'next_text' => __('»'), 283 'total' => $num_pages, 284 'current' => $pagenum 285 )); 286 287 $is_trash = isset($_GET['post_status']) && $_GET['post_status'] == 'trash'; 288 289 ?> 290 291 <div class="alignleft actions"> 292 <select name="action"> 293 <option value="-1" selected="selected"><?php _e('Bulk Actions'); ?></option> 294 <?php if ( $is_trash ) { ?> 295 <option value="untrash"><?php _e('Restore'); ?></option> 296 <?php } else { ?> 297 <option value="edit"><?php _e('Edit'); ?></option> 298 <?php } if ( $is_trash || !EMPTY_TRASH_DAYS ) { ?> 299 <option value="delete"><?php _e('Delete Permanently'); ?></option> 300 <?php } else { ?> 301 <option value="trash"><?php _e('Move to Trash'); ?></option> 302 <?php } ?> 303 </select> 304 <input type="submit" value="<?php esc_attr_e('Apply'); ?>" name="doaction" id="doaction" class="button-secondary action" /> 305 <?php wp_nonce_field('bulk-posts'); ?> 306 307 <?php // view filters 308 if ( !is_singular() ) { 309 $arc_query = $wpdb->prepare("SELECT DISTINCT YEAR(post_date) AS yyear, MONTH(post_date) AS mmonth FROM $wpdb->posts WHERE post_type = %s ORDER BY post_date DESC", $post_type); 310 311 $arc_result = $wpdb->get_results( $arc_query ); 312 313 $month_count = count($arc_result); 314 315 if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { 316 $m = isset($_GET['m']) ? (int)$_GET['m'] : 0; 317 ?> 318 <select name='m'> 319 <option<?php selected( $m, 0 ); ?> value='0'><?php _e('Show all dates'); ?></option> 320 <?php 321 foreach ($arc_result as $arc_row) { 322 if ( $arc_row->yyear == 0 ) 323 continue; 324 $arc_row->mmonth = zeroise( $arc_row->mmonth, 2 ); 325 326 if ( $arc_row->yyear . $arc_row->mmonth == $m ) 327 $default = ' selected="selected"'; 328 else 329 $default = ''; 330 331 echo "<option$default value='" . esc_attr("$arc_row->yyear$arc_row->mmonth") . "'>"; 332 echo $wp_locale->get_month($arc_row->mmonth) . " $arc_row->yyear"; 333 echo "</option>\n"; 334 } 335 ?> 336 </select> 337 <?php } ?> 338 339 <?php 340 if ( is_object_in_taxonomy($post_type, 'category') ) { 341 $dropdown_options = array('show_option_all' => __('View all categories'), 'hide_empty' => 0, 'hierarchical' => 1, 342 'show_count' => 0, 'orderby' => 'name', 'selected' => $cat); 343 wp_dropdown_categories($dropdown_options); 344 } 345 do_action('restrict_manage_posts'); 346 ?> 347 <input type="submit" id="post-query-submit" value="<?php esc_attr_e('Filter'); ?>" class="button-secondary" /> 348 <?php } 349 350 if ( $is_trash && current_user_can($post_type_object->edit_others_cap) ) { ?> 351 <input type="submit" name="delete_all" id="delete_all" value="<?php esc_attr_e('Empty Trash'); ?>" class="button-secondary apply" /> 352 <?php } ?> 353 </div> 354 355 <?php if ( $page_links ) { ?> 356 <div class="tablenav-pages"><?php 357 $count_posts = $post_type_object->hierarchical ? $wp_query->post_count : $wp_query->found_posts; 358 $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>%s', 359 number_format_i18n( ( $pagenum - 1 ) * $per_page + 1 ), 360 number_format_i18n( min( $pagenum * $per_page, $count_posts ) ), 361 number_format_i18n( $count_posts ), 362 $page_links 363 ); 364 echo $page_links_text; 365 ?></div> 366 <?php } ?> 367 368 <div class="view-switch"> 369 <a href="<?php echo esc_url(add_query_arg('mode', 'list', $_SERVER['REQUEST_URI'])) ?>"><img <?php if ( 'list' == $mode ) echo 'class="current"'; ?> id="view-switch-list" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" width="20" height="20" title="<?php _e('List View') ?>" alt="<?php _e('List View') ?>" /></a> 370 <a href="<?php echo esc_url(add_query_arg('mode', 'excerpt', $_SERVER['REQUEST_URI'])) ?>"><img <?php if ( 'excerpt' == $mode ) echo 'class="current"'; ?> id="view-switch-excerpt" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" width="20" height="20" title="<?php _e('Excerpt View') ?>" alt="<?php _e('Excerpt View') ?>" /></a> 371 </div> 372 373 <div class="clear"></div> 374 </div> 375 376 <div class="clear"></div> 377 378 <?php include ( 'edit-post-rows.php' ); ?> 379 380 <div class="tablenav"> 381 382 <?php 383 if ( $page_links ) 384 echo "<div class='tablenav-pages'>$page_links_text</div>"; 385 ?> 386 387 <div class="alignleft actions"> 388 <select name="action2"> 389 <option value="-1" selected="selected"><?php _e('Bulk Actions'); ?></option> 390 <?php if ( $is_trash ) { ?> 391 <option value="untrash"><?php _e('Restore'); ?></option> 392 <?php } else { ?> 393 <option value="edit"><?php _e('Edit'); ?></option> 394 <?php } if ( $is_trash || !EMPTY_TRASH_DAYS ) { ?> 395 <option value="delete"><?php _e('Delete Permanently'); ?></option> 396 <?php } else { ?> 397 <option value="trash"><?php _e('Move to Trash'); ?></option> 398 <?php } ?> 399 </select> 400 <input type="submit" value="<?php esc_attr_e('Apply'); ?>" name="doaction2" id="doaction2" class="button-secondary action" /> 401 <?php if ( $is_trash && current_user_can($post_type_object->edit_others_cap) ) { ?> 402 <input type="submit" name="delete_all2" id="delete_all2" value="<?php esc_attr_e('Empty Trash'); ?>" class="button-secondary apply" /> 403 <?php } ?> 404 <br class="clear" /> 405 </div> 406 <br class="clear" /> 407 </div> 408 409 <?php } else { // have_posts() ?> 410 <div class="clear"></div> 411 <p><?php 412 if ( isset($_GET['post_status']) && 'trash' == $_GET['post_status'] ) 413 printf( __( 'No %s found in the Trash.' ), $post_type_object->label ); 414 else 415 printf( __( 'No %s found.' ), $post_type_object->label ); 416 ?></p> 417 <?php } ?> 418 419 </form> 420 421 <?php inline_edit_row( $current_screen ); ?> 422 423 <div id="ajax-response"></div> 424 <br class="clear" /> 425 </div> 426 427 <?php 428 include ('admin-footer.php');
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Apr 5 14:26:09 2010 | Cross-referenced by PHPXref 0.7 |