Changeset 15491 for trunk/wp-admin/upload.php
- Timestamp:
- 08/11/2010 09:54:51 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/upload.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/upload.php
r15132 r15491 8 8 9 9 /** WordPress Administration Bootstrap */ 10 require_once('./admin.php'); 10 require_once( './admin.php' ); 11 12 if ( !current_user_can('upload_files') ) 13 wp_die(__('You do not have permission to upload files.')); 14 15 // Handle bulk actions 16 if ( isset( $_REQUEST['found_post_id'] ) && isset( $_REQUEST['media'] ) ) { 17 check_admin_referer( 'bulk-media' ); 18 19 $parent_id = (int) $_REQUEST['found_post_id']; 20 if ( !$parent_id ) 21 return; 22 23 $parent = &get_post( $parent_id ); 24 if ( !current_user_can( 'edit_post', $parent_id ) ) 25 wp_die( __( 'You are not allowed to edit this post.' ) ); 26 27 $attach = array(); 28 foreach ( (array) $_REQUEST['media'] as $att_id ) { 29 $att_id = (int) $att_id; 30 31 if ( !current_user_can( 'edit_post', $att_id ) ) 32 continue; 33 34 $attach[] = $att_id; 35 clean_attachment_cache( $att_id ); 36 } 37 38 if ( ! empty( $attach ) ) { 39 $attach = implode( ',', $attach ); 40 $attached = $wpdb->query( $wpdb->prepare( "UPDATE $wpdb->posts SET post_parent = %d WHERE post_type = 'attachment' AND ID IN ( $attach )", $parent_id ) ); 41 } 42 43 if ( isset( $attached ) ) { 44 $location = 'upload.php'; 45 if ( $referer = wp_get_referer() ) { 46 if ( false !== strpos( $referer, 'upload.php' ) ) 47 $location = $referer; 48 } 49 50 $location = add_query_arg( array( 'attached' => $attached ) , $location ); 51 wp_redirect( $location ); 52 exit; 53 } 54 55 } elseif ( isset( $_REQUEST['doaction'] ) || isset( $_REQUEST['doaction2'] ) || isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) ) { 56 check_admin_referer( 'bulk-media' ); 57 58 if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) ) { 59 $post_ids = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_type='attachment' AND post_status = 'trash'" ); 60 $doaction = 'delete'; 61 } elseif ( ( $_REQUEST['action'] != -1 || $_REQUEST['action2'] != -1 ) && ( isset( $_REQUEST['media'] ) || isset( $_REQUEST['ids'] ) ) ) { 62 $post_ids = isset( $_REQUEST['media'] ) ? $_REQUEST['media'] : explode( ',', $_REQUEST['ids'] ); 63 $doaction = ( $_REQUEST['action'] != -1 ) ? $_REQUEST['action'] : $_REQUEST['action2']; 64 } else { 65 wp_redirect( $_SERVER['HTTP_REFERER'] ); 66 } 67 68 $location = 'upload.php'; 69 if ( $referer = wp_get_referer() ) { 70 if ( false !== strpos( $referer, 'upload.php' ) ) 71 $location = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'message', 'ids', 'posted' ), $referer ); 72 } 73 74 switch ( $doaction ) { 75 case 'trash': 76 foreach ( (array) $post_ids as $post_id ) { 77 if ( !current_user_can( 'delete_post', $post_id ) ) 78 wp_die( __( 'You are not allowed to move this post to the trash.' ) ); 79 80 if ( !wp_trash_post( $post_id ) ) 81 wp_die( __( 'Error in moving to trash...' ) ); 82 } 83 $location = add_query_arg( array( 'trashed' => count( $post_ids ), 'ids' => join( ',', $post_ids ) ), $location ); 84 break; 85 case 'untrash': 86 foreach ( (array) $post_ids as $post_id ) { 87 if ( !current_user_can( 'delete_post', $post_id ) ) 88 wp_die( __( 'You are not allowed to move this post out of the trash.' ) ); 89 90 if ( !wp_untrash_post( $post_id ) ) 91 wp_die( __( 'Error in restoring from trash...' ) ); 92 } 93 $location = add_query_arg( 'untrashed', count( $post_ids ), $location ); 94 break; 95 case 'delete': 96 foreach ( (array) $post_ids as $post_id_del ) { 97 if ( !current_user_can( 'delete_post', $post_id_del ) ) 98 wp_die( __( 'You are not allowed to delete this post.' ) ); 99 100 if ( !wp_delete_attachment( $post_id_del ) ) 101 wp_die( __( 'Error in deleting...' ) ); 102 } 103 $location = add_query_arg( 'deleted', count( $post_ids ), $location ); 104 break; 105 } 106 107 wp_redirect( $location ); 108 exit; 109 } elseif ( ! empty( $_REQUEST['_wp_http_referer'] ) ) { 110 wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), stripslashes( $_SERVER['REQUEST_URI'] ) ) ); 111 exit; 112 } 113 114 require_once( './includes/default-list-tables.php' ); 115 116 $table = new WP_Media_Table; 117 118 $title = __('Media Library'); 119 $parent_file = 'upload.php'; 120 11 121 wp_enqueue_script( 'wp-ajax-response' ); 12 122 wp_enqueue_script( 'jquery-ui-draggable' ); 13 14 if ( !current_user_can('upload_files') ) 15 wp_die(__('You do not have permission to upload files.')); 16 17 if ( isset($_GET['find_detached']) ) { 18 check_admin_referer('bulk-media'); 19 20 if ( !current_user_can('edit_posts') ) 21 wp_die( __('You are not allowed to scan for lost attachments.') ); 22 23 $lost = $wpdb->get_col("SELECT ID FROM $wpdb->posts WHERE post_type = 'attachment' AND post_parent > '0' and post_parent NOT IN ( SELECT ID FROM $wpdb->posts WHERE post_type NOT IN ('attachment', '" . join("', '", get_post_types( array( 'public' => false ) ) ) . "') )"); 24 25 $_GET['detached'] = 1; 26 27 } elseif ( isset($_GET['found_post_id']) && isset($_GET['media']) ) { 28 check_admin_referer('bulk-media'); 29 30 if ( ! ( $parent_id = (int) $_GET['found_post_id'] ) ) 31 return; 32 33 $parent = &get_post($parent_id); 34 if ( !current_user_can('edit_post', $parent_id) ) 35 wp_die( __('You are not allowed to edit this post.') ); 36 37 $attach = array(); 38 foreach( (array) $_GET['media'] as $att_id ) { 39 $att_id = (int) $att_id; 40 41 if ( !current_user_can('edit_post', $att_id) ) 42 continue; 43 44 $attach[] = $att_id; 45 clean_attachment_cache($att_id); 46 } 47 48 if ( ! empty($attach) ) { 49 $attach = implode(',', $attach); 50 $attached = $wpdb->query( $wpdb->prepare("UPDATE $wpdb->posts SET post_parent = %d WHERE post_type = 'attachment' AND ID IN ($attach)", $parent_id) ); 51 } 52 53 if ( isset($attached) ) { 54 $location = 'upload.php'; 55 if ( $referer = wp_get_referer() ) { 56 if ( false !== strpos($referer, 'upload.php') ) 57 $location = $referer; 58 } 59 60 $location = add_query_arg( array( 'attached' => $attached ) , $location ); 61 wp_redirect($location); 62 exit; 63 } 64 65 } elseif ( isset($_GET['doaction']) || isset($_GET['doaction2']) || isset($_GET['delete_all']) || isset($_GET['delete_all2']) ) { 66 check_admin_referer('bulk-media'); 67 68 if ( isset($_GET['delete_all']) || isset($_GET['delete_all2']) ) { 69 $post_ids = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_type='attachment' AND post_status = 'trash'" ); 70 $doaction = 'delete'; 71 } elseif ( ( $_GET['action'] != -1 || $_GET['action2'] != -1 ) && ( isset($_GET['media']) || isset($_GET['ids']) ) ) { 72 $post_ids = isset($_GET['media']) ? $_GET['media'] : explode(',', $_GET['ids']); 73 $doaction = ($_GET['action'] != -1) ? $_GET['action'] : $_GET['action2']; 74 } else { 75 wp_redirect($_SERVER['HTTP_REFERER']); 76 } 77 78 $location = 'upload.php'; 79 if ( $referer = wp_get_referer() ) { 80 if ( false !== strpos($referer, 'upload.php') ) 81 $location = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'message', 'ids', 'posted'), $referer ); 82 } 83 84 switch ( $doaction ) { 85 case 'trash': 86 foreach( (array) $post_ids as $post_id ) { 87 if ( !current_user_can('delete_post', $post_id) ) 88 wp_die( __('You are not allowed to move this post to the trash.') ); 89 90 if ( !wp_trash_post($post_id) ) 91 wp_die( __('Error in moving to trash...') ); 92 } 93 $location = add_query_arg( array( 'trashed' => count($post_ids), 'ids' => join(',', $post_ids) ), $location ); 94 break; 95 case 'untrash': 96 foreach( (array) $post_ids as $post_id ) { 97 if ( !current_user_can('delete_post', $post_id) ) 98 wp_die( __('You are not allowed to move this post out of the trash.') ); 99 100 if ( !wp_untrash_post($post_id) ) 101 wp_die( __('Error in restoring from trash...') ); 102 } 103 $location = add_query_arg('untrashed', count($post_ids), $location); 104 break; 105 case 'delete': 106 foreach( (array) $post_ids as $post_id_del ) { 107 if ( !current_user_can('delete_post', $post_id_del) ) 108 wp_die( __('You are not allowed to delete this post.') ); 109 110 if ( !wp_delete_attachment($post_id_del) ) 111 wp_die( __('Error in deleting...') ); 112 } 113 $location = add_query_arg('deleted', count($post_ids), $location); 114 break; 115 } 116 117 wp_redirect($location); 118 exit; 119 } elseif ( ! empty($_GET['_wp_http_referer']) ) { 120 wp_redirect( remove_query_arg( array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI']) ) ); 121 exit; 122 } 123 124 $title = __('Media Library'); 125 $parent_file = 'upload.php'; 126 127 if ( ! isset( $_GET['paged'] ) || $_GET['paged'] < 1 ) 128 $_GET['paged'] = 1; 129 130 if ( isset($_GET['detached']) ) { 131 132 $media_per_page = (int) get_user_option( 'upload_per_page' ); 133 if ( empty($media_per_page) || $media_per_page < 1 ) 134 $media_per_page = 20; 135 $media_per_page = apply_filters( 'upload_per_page', $media_per_page ); 136 137 if ( !empty($lost) ) { 138 $start = ( (int) $_GET['paged'] - 1 ) * $media_per_page; 139 $page_links_total = ceil(count($lost) / $media_per_page); 140 $lost = implode(',', $lost); 141 142 $orphans = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE post_type = 'attachment' AND ID IN (%s) LIMIT %d, %d", $lost, $start, $media_per_page ) ); 143 } else { 144 $start = ( (int) $_GET['paged'] - 1 ) * $media_per_page; 145 $orphans = $wpdb->get_results( $wpdb->prepare( "SELECT SQL_CALC_FOUND_ROWS * FROM $wpdb->posts WHERE post_type = 'attachment' AND post_status != 'trash' AND post_parent < 1 LIMIT %d, %d", $start, $media_per_page ) ); 146 $total_orphans = $wpdb->get_var( "SELECT FOUND_ROWS()" ); 147 $page_links_total = ceil( $total_orphans / $media_per_page ); 148 $wp_query->found_posts = $total_orphans; 149 $wp_query->query_vars['posts_per_page'] = $media_per_page; 150 } 151 152 $post_mime_types = get_post_mime_types(); 153 $avail_post_mime_types = get_available_post_mime_types('attachment'); 154 155 if ( isset($_GET['post_mime_type']) && !array_intersect( (array) $_GET['post_mime_type'], array_keys($post_mime_types) ) ) 156 unset($_GET['post_mime_type']); 157 158 } else { 159 list($post_mime_types, $avail_post_mime_types) = wp_edit_attachments_query(); 160 } 161 162 $is_trash = ( isset($_GET['status']) && $_GET['status'] == 'trash' ); 163 164 wp_enqueue_script('media'); 123 wp_enqueue_script( 'media' ); 165 124 166 125 add_contextual_help( $current_screen, … … 240 199 $num_posts[$type] = ( isset( $num_posts[$type] ) ) ? $num_posts[$type] + $_num_posts[$real] : $_num_posts[$real]; 241 200 242 $class = ( empty($_GET['post_mime_type']) && ! isset($_GET['detached'])&& !isset($_GET['status']) ) ? ' class="current"' : '';201 $class = ( empty($_GET['post_mime_type']) && !$detached && !isset($_GET['status']) ) ? ' class="current"' : ''; 243 202 $type_links[] = "<li><a href='upload.php'$class>" . sprintf( _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $_total_posts, 'uploaded files' ), number_format_i18n( $_total_posts ) ) . '</a>'; 244 203 foreach ( $post_mime_types as $mime_type => $label ) { … … 253 212 $type_links[] = "<li><a href='upload.php?post_mime_type=$mime_type'$class>" . sprintf( _n( $label[2][0], $label[2][1], $num_posts[$mime_type] ), number_format_i18n( $num_posts[$mime_type] )) . '</a>'; 254 213 } 255 $type_links[] = '<li><a href="upload.php?detached=1"' . ( isset($_GET['detached'])? ' class="current"' : '' ) . '>' . sprintf( _nx( 'Unattached <span class="count">(%s)</span>', 'Unattached <span class="count">(%s)</span>', $total_orphans, 'detached files' ), number_format_i18n( $total_orphans ) ) . '</a>';214 $type_links[] = '<li><a href="upload.php?detached=1"' . ( $detached ? ' class="current"' : '' ) . '>' . sprintf( _nx( 'Unattached <span class="count">(%s)</span>', 'Unattached <span class="count">(%s)</span>', $total_orphans, 'detached files' ), number_format_i18n( $total_orphans ) ) . '</a>'; 256 215 257 216 if ( !empty($_num_posts['trash']) ) … … 271 230 </form> 272 231 273 <form id="posts-filter" action="" method="get"> 274 <?php wp_nonce_field('bulk-media'); ?> 275 <?php if ( have_posts() || isset( $orphans ) ) { ?> 276 <div class="tablenav"> 277 <?php 278 if ( ! isset($page_links_total) ) 279 $page_links_total = $wp_query->max_num_pages; 280 281 $page_links = paginate_links( array( 282 'base' => add_query_arg( 'paged', '%#%' ), 283 'format' => '', 284 'prev_text' => __('«'), 285 'next_text' => __('»'), 286 'total' => $page_links_total, 287 'current' => $_GET['paged'] 288 )); 289 290 if ( $page_links ) : ?> 291 <div class="tablenav-pages"><?php $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>%s', 292 number_format_i18n( ( $_GET['paged'] - 1 ) * $wp_query->query_vars['posts_per_page'] + 1 ), 293 number_format_i18n( min( $_GET['paged'] * $wp_query->query_vars['posts_per_page'], $wp_query->found_posts ) ), 294 number_format_i18n( $wp_query->found_posts ), 295 $page_links 296 ); echo $page_links_text; ?></div> 297 <?php endif; ?> 298 299 <div class="alignleft actions"> 300 <?php if ( ! isset( $orphans ) || ! empty( $orphans ) ) { ?> 301 <select name="action" class="select-action"> 302 <option value="-1" selected="selected"><?php _e('Bulk Actions'); ?></option> 303 <?php if ( $is_trash ) { ?> 304 <option value="untrash"><?php _e('Restore'); ?></option> 305 <?php } if ( $is_trash || !EMPTY_TRASH_DAYS || !MEDIA_TRASH ) { ?> 306 <option value="delete"><?php _e('Delete Permanently'); ?></option> 307 <?php } else { ?> 308 <option value="trash"><?php _e('Move to Trash'); ?></option> 309 <?php } if ( isset($orphans) ) { ?> 310 <option value="attach"><?php _e('Attach to a post'); ?></option> 311 <?php } ?> 312 </select> 313 <input type="submit" value="<?php esc_attr_e('Apply'); ?>" name="doaction" id="doaction" class="button-secondary action" /> 314 315 <?php 316 if ( !is_singular() && !isset($_GET['detached']) && !$is_trash ) { 317 $arc_query = "SELECT DISTINCT YEAR(post_date) AS yyear, MONTH(post_date) AS mmonth FROM $wpdb->posts WHERE post_type = 'attachment' ORDER BY post_date DESC"; 318 319 $arc_result = $wpdb->get_results( $arc_query ); 320 321 $month_count = count($arc_result); 322 323 if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) : ?> 324 <select name='m'> 325 <option value='0'><?php _e('Show all dates'); ?></option> 326 <?php 327 foreach ($arc_result as $arc_row) { 328 if ( $arc_row->yyear == 0 ) 329 continue; 330 $arc_row->mmonth = zeroise( $arc_row->mmonth, 2 ); 331 332 if ( isset($_GET['m']) && ( $arc_row->yyear . $arc_row->mmonth == $_GET['m'] ) ) 333 $default = ' selected="selected"'; 334 else 335 $default = ''; 336 337 echo "<option$default value='" . esc_attr("$arc_row->yyear$arc_row->mmonth") . "'>"; 338 echo $wp_locale->get_month($arc_row->mmonth) . " $arc_row->yyear"; 339 echo "</option>\n"; 340 } 341 ?> 342 </select> 343 <?php endif; // month_count ?> 344 345 <?php do_action('restrict_manage_posts'); ?> 346 347 <input type="submit" id="post-query-submit" value="<?php esc_attr_e('Filter'); ?>" class="button-secondary" /> 348 349 <?php } // ! is_singular ?> 350 351 <?php 352 353 } // ! empty( $orphans ) 354 355 if ( isset($_GET['detached']) ) { ?> 356 <input type="submit" id="find_detached" name="find_detached" value="<?php esc_attr_e('Scan for lost attachments'); ?>" class="button-secondary" /> 357 <?php } elseif ( isset($_GET['status']) && $_GET['status'] == 'trash' && current_user_can('edit_others_posts') ) { ?> 358 <input type="submit" id="delete_all" name="delete_all" value="<?php esc_attr_e('Empty Trash'); ?>" class="button-secondary apply" /> 359 <?php } ?> 360 361 </div> 362 232 <form id="posts-filter" action="" method="post"> 233 <?php $table->display(); ?> 234 <div id="ajax-response"></div> 235 <?php find_posts_div(); ?> 363 236 <br class="clear" /> 364 237 </div> 365 366 <?php } // have_posts() || !empty( $orphans ) ?>367 368 <div class="clear"></div>369 370 <?php if ( ! empty( $orphans ) ) { ?>371 <table class="widefat" cellspacing="0">372 <thead>373 <tr>374 <th scope="col" class="check-column"><input type="checkbox" /></th>375 <th scope="col"></th>376 <th scope="col"><?php /* translators: column name in media */ _ex('Media', 'media column name'); ?></th>377 <th scope="col"><?php /* translators: column name in media */ _ex('Author', 'media column name'); ?></th>378 <th scope="col"><?php /* translators: column name in media */ _ex('Date Added', 'media column name'); ?></th>379 </tr>380 </thead>381 382 <tfoot>383 <tr>384 <th scope="col" class="check-column"><input type="checkbox" /></th>385 <th scope="col"></th>386 <th scope="col"><?php /* translators: column name in media */ _ex('Media', 'media column name'); ?></th>387 <th scope="col"><?php /* translators: column name in media */ _ex('Author', 'media column name'); ?></th>388 <th scope="col"><?php /* translators: column name in media */ _ex('Date Added', 'media column name'); ?></th>389 </tr>390 </tfoot>391 392 <tbody id="the-list" class="list:post">393 <?php394 foreach ( $orphans as $post ) {395 $class = 'alternate' == $class ? '' : 'alternate';396 $att_title = esc_html( _draft_or_post_title($post->ID) );397 ?>398 <tr id='post-<?php echo $post->ID; ?>' class='<?php echo $class; ?>' valign="top">399 <th scope="row" class="check-column"><?php if ( current_user_can('edit_post', $post->ID) ) { ?><input type="checkbox" name="media[]" value="<?php echo esc_attr($post->ID); ?>" /><?php } ?></th>400 401 <td class="media-icon"><?php402 if ( $thumb = wp_get_attachment_image( $post->ID, array(80, 60), true ) ) { ?>403 <a href="media.php?action=edit&attachment_id=<?php echo $post->ID; ?>" title="<?php echo esc_attr(sprintf(__('Edit “%s”'), $att_title)); ?>"><?php echo $thumb; ?></a>404 <?php } ?></td>405 406 <td class="media column-media"><strong><a href="<?php echo get_edit_post_link( $post->ID ); ?>" title="<?php echo esc_attr(sprintf(__('Edit “%s”'), $att_title)); ?>"><?php echo $att_title; ?></a></strong><br />407 <?php408 if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $post->ID ), $matches ) )409 echo esc_html( strtoupper( $matches[1] ) );410 else411 echo strtoupper( str_replace( 'image/', '', get_post_mime_type() ) );412 ?>413 414 <div class="row-actions">415 <?php416 $actions = array();417 if ( current_user_can('edit_post', $post->ID) )418 $actions['edit'] = '<a href="' . get_edit_post_link($post->ID, true) . '">' . __('Edit') . '</a>';419 if ( current_user_can('delete_post', $post->ID) )420 if ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) {421 $actions['trash'] = "<a class='submitdelete' href='" . wp_nonce_url("post.php?action=trash&post=$post->ID", 'trash-attachment_' . $post->ID) . "'>" . __('Trash') . "</a>";422 } else {423 $delete_ays = !MEDIA_TRASH ? " onclick='return showNotice.warn();'" : '';424 $actions['delete'] = "<a class='submitdelete'$delete_ays href='" . wp_nonce_url("post.php?action=delete&post=$post->ID", 'delete-attachment_' . $post->ID) . "'>" . __('Delete Permanently') . "</a>";425 }426 $actions['view'] = '<a href="' . get_permalink($post->ID) . '" title="' . esc_attr(sprintf(__('View “%s”'), $title)) . '" rel="permalink">' . __('View') . '</a>';427 if ( current_user_can('edit_post', $post->ID) )428 $actions['attach'] = '<a href="#the-list" onclick="findPosts.open(\'media[]\',\''.$post->ID.'\');return false;" class="hide-if-no-js">'.__('Attach').'</a>';429 $actions = apply_filters( 'media_row_actions', $actions, $post );430 $action_count = count($actions);431 $i = 0;432 foreach ( $actions as $action => $link ) {433 ++$i;434 ( $i == $action_count ) ? $sep = '' : $sep = ' | ';435 echo "<span class='$action'>$link$sep</span>";436 } ?>437 </div></td>438 <td class="author column-author"><?php $author = get_userdata($post->post_author); echo $author->display_name; ?></td>439 <?php if ( '0000-00-00 00:00:00' == $post->post_date && 'date' == $column_name ) {440 $t_time = $h_time = __('Unpublished');441 } else {442 $t_time = get_the_time(__('Y/m/d g:i:s A'));443 $m_time = $post->post_date;444 $time = get_post_time( 'G', true );445 if ( ( abs($t_diff = time() - $time) ) < 86400 ) {446 if ( $t_diff < 0 )447 $h_time = sprintf( __('%s from now'), human_time_diff( $time ) );448 else449 $h_time = sprintf( __('%s ago'), human_time_diff( $time ) );450 } else {451 $h_time = mysql2date(__('Y/m/d'), $m_time);452 }453 } ?>454 <td class="date column-date"><?php echo $h_time ?></td>455 </tr>456 <?php } ?>457 </tbody>458 </table>459 460 <?php461 462 } else {463 include( './edit-attachment-rows.php' );464 } ?>465 466 <div id="ajax-response"></div>467 468 <div class="tablenav">469 470 <?php471 if ( have_posts() || ! empty( $orphans ) ) {472 473 if ( $page_links )474 echo "<div class='tablenav-pages'>$page_links_text</div>";475 ?>476 477 <div class="alignleft actions">478 <select name="action2" class="select-action">479 <option value="-1" selected="selected"><?php _e('Bulk Actions'); ?></option>480 <?php if ($is_trash) { ?>481 <option value="untrash"><?php _e('Restore'); ?></option>482 <?php } if ( $is_trash || !EMPTY_TRASH_DAYS || !MEDIA_TRASH ) { ?>483 <option value="delete"><?php _e('Delete Permanently'); ?></option>484 <?php } else { ?>485 <option value="trash"><?php _e('Move to Trash'); ?></option>486 <?php } if (isset($orphans)) { ?>487 <option value="attach"><?php _e('Attach to a post'); ?></option>488 <?php } ?>489 </select>490 <input type="submit" value="<?php esc_attr_e('Apply'); ?>" name="doaction2" id="doaction2" class="button-secondary action" />491 492 <?php if ( isset($_GET['status']) && $_GET['status'] == 'trash' && current_user_can('edit_others_posts') ) { ?>493 <input type="submit" id="delete_all2" name="delete_all2" value="<?php esc_attr_e('Empty Trash'); ?>" class="button-secondary apply" />494 <?php } ?>495 </div>496 497 <?php } ?>498 <br class="clear" />499 </div>500 <?php find_posts_div(); ?>501 238 </form> 502 239 <br class="clear" />
Note: See TracChangeset
for help on using the changeset viewer.