Changes in trunk/wp-admin/upload.php [15132:17345]
- File:
-
- 1 edited
-
trunk/wp-admin/upload.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/upload.php
r15132 r17345 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 $wp_list_table = _get_list_table('WP_Media_List_Table'); 16 $pagenum = $wp_list_table->get_pagenum(); 17 18 // Handle bulk actions 19 $doaction = $wp_list_table->current_action(); 20 21 if ( $doaction ) { 22 check_admin_referer('bulk-media'); 23 24 if ( 'delete_all' == $doaction ) { 25 $post_ids = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_type='attachment' AND post_status = 'trash'" ); 26 $doaction = 'delete'; 27 } elseif ( isset( $_REQUEST['media'] ) ) { 28 $post_ids = $_REQUEST['media']; 29 } elseif ( isset( $_REQUEST['ids'] ) ) { 30 $post_ids = explode( ',', $_REQUEST['ids'] ); 31 } 32 33 $location = 'upload.php'; 34 if ( $referer = wp_get_referer() ) { 35 if ( false !== strpos( $referer, 'upload.php' ) ) 36 $location = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'message', 'ids', 'posted' ), $referer ); 37 } 38 39 switch ( $doaction ) { 40 case 'find_detached': 41 if ( !current_user_can('edit_posts') ) 42 wp_die( __('You are not allowed to scan for lost attachments.') ); 43 44 $lost = $wpdb->get_col( " 45 SELECT ID FROM $wpdb->posts 46 WHERE post_type = 'attachment' AND post_parent > '0' 47 AND post_parent NOT IN ( 48 SELECT ID FROM $wpdb->posts 49 WHERE post_type NOT IN ( 'attachment', '" . join( "', '", get_post_types( array( 'public' => false ) ) ) . "' ) 50 ) 51 " ); 52 53 $_REQUEST['detached'] = 1; 54 break; 55 case 'attach': 56 $parent_id = (int) $_REQUEST['found_post_id']; 57 if ( !$parent_id ) 58 return; 59 60 $parent = &get_post( $parent_id ); 61 if ( !current_user_can( 'edit_post', $parent_id ) ) 62 wp_die( __( 'You are not allowed to edit this post.' ) ); 63 64 $attach = array(); 65 foreach ( (array) $_REQUEST['media'] as $att_id ) { 66 $att_id = (int) $att_id; 67 68 if ( !current_user_can( 'edit_post', $att_id ) ) 69 continue; 70 71 $attach[] = $att_id; 72 clean_attachment_cache( $att_id ); 73 } 74 75 if ( ! empty( $attach ) ) { 76 $attach = implode( ',', $attach ); 77 $attached = $wpdb->query( $wpdb->prepare( "UPDATE $wpdb->posts SET post_parent = %d WHERE post_type = 'attachment' AND ID IN ( $attach )", $parent_id ) ); 78 } 79 80 if ( isset( $attached ) ) { 81 $location = 'upload.php'; 82 if ( $referer = wp_get_referer() ) { 83 if ( false !== strpos( $referer, 'upload.php' ) ) 84 $location = $referer; 85 } 86 87 $location = add_query_arg( array( 'attached' => $attached ) , $location ); 88 wp_redirect( $location ); 89 exit; 90 } 91 break; 92 case 'trash': 93 foreach ( (array) $post_ids as $post_id ) { 94 if ( !current_user_can( 'delete_post', $post_id ) ) 95 wp_die( __( 'You are not allowed to move this post to the trash.' ) ); 96 97 if ( !wp_trash_post( $post_id ) ) 98 wp_die( __( 'Error in moving to trash...' ) ); 99 } 100 $location = add_query_arg( array( 'trashed' => count( $post_ids ), 'ids' => join( ',', $post_ids ) ), $location ); 101 break; 102 case 'untrash': 103 foreach ( (array) $post_ids as $post_id ) { 104 if ( !current_user_can( 'delete_post', $post_id ) ) 105 wp_die( __( 'You are not allowed to move this post out of the trash.' ) ); 106 107 if ( !wp_untrash_post( $post_id ) ) 108 wp_die( __( 'Error in restoring from trash...' ) ); 109 } 110 $location = add_query_arg( 'untrashed', count( $post_ids ), $location ); 111 break; 112 case 'delete': 113 foreach ( (array) $post_ids as $post_id_del ) { 114 if ( !current_user_can( 'delete_post', $post_id_del ) ) 115 wp_die( __( 'You are not allowed to delete this post.' ) ); 116 117 if ( !wp_delete_attachment( $post_id_del ) ) 118 wp_die( __( 'Error in deleting...' ) ); 119 } 120 $location = add_query_arg( 'deleted', count( $post_ids ), $location ); 121 break; 122 } 123 124 wp_redirect( $location ); 125 exit; 126 } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) { 127 wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), stripslashes( $_SERVER['REQUEST_URI'] ) ) ); 128 exit; 129 } 130 131 $wp_list_table->prepare_items(); 132 133 $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' ); 134 if ( $pagenum > $total_pages && $total_pages > 0 ) { 135 wp_redirect( add_query_arg( 'paged', $total_pages ) ); 136 exit; 137 } 138 139 $title = __('Media Library'); 140 $parent_file = 'upload.php'; 141 11 142 wp_enqueue_script( 'wp-ajax-response' ); 12 143 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'); 144 wp_enqueue_script( 'media' ); 145 146 add_screen_option( 'per_page', array('label' => _x( 'Media items', 'items per page (screen options)' )) ); 165 147 166 148 add_contextual_help( $current_screen, 167 '<p>' . __( 'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the <em>Screen Options</em> tab to customize the display of this screen.') . '</p>' .168 '<p>' . __( 'You can narrow the list by file type/status using the text link filters at the top of the screen. You also can refine the list by date using the dropdown menu above the media table.') . '</p>' .169 '<p>' . __( 'Hovering over a row reveals action links: <em>Edit</em>, <em>Delete Permanently</em>, and <em>View</em>. Clicking <em>Edit</em> or on the media file’s name displays a simple screen to edit that individual file’s metadata. Clicking <em>Delete Permanently</em> will delete the file from the media library (as well as from any posts to which it is currently attached). <em>View</em> will take you to the display page for that file.') . '</p>' .170 '<p>' . __( 'If a media file has not been attached to any post, you will see that in the <em>Attached To</em> column, and can click on <em>Attach File</em> to launch a small popup that will allow you to search for a post and attach the file.') . '</p>' .171 '<p><strong>' . __( 'For more information:') . '</strong></p>' .172 '<p>' . __( '<a href="http://codex.wordpress.org/Media_Library_SubPanel" target="_blank">Media Library Documentation</a>') . '</p>' .173 '<p>' . __( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'149 '<p>' . __( 'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the <em>Screen Options</em> tab to customize the display of this screen.' ) . '</p>' . 150 '<p>' . __( 'You can narrow the list by file type/status using the text link filters at the top of the screen. You also can refine the list by date using the dropdown menu above the media table.' ) . '</p>' . 151 '<p>' . __( 'Hovering over a row reveals action links: <em>Edit</em>, <em>Delete Permanently</em>, and <em>View</em>. Clicking <em>Edit</em> or on the media file’s name displays a simple screen to edit that individual file’s metadata. Clicking <em>Delete Permanently</em> will delete the file from the media library (as well as from any posts to which it is currently attached). <em>View</em> will take you to the display page for that file.' ) . '</p>' . 152 '<p>' . __( 'If a media file has not been attached to any post, you will see that in the <em>Attached To</em> column, and can click on <em>Attach File</em> to launch a small popup that will allow you to search for a post and attach the file.' ) . '</p>' . 153 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 154 '<p>' . __( '<a href="http://codex.wordpress.org/Media_Library_SubPanel" target="_blank">Documentation on Media Library</a>' ) . '</p>' . 155 '<p>' . __( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 174 156 ); 175 157 … … 180 162 <?php screen_icon(); ?> 181 163 <h2><?php echo esc_html( $title ); ?> <a href="media-new.php" class="button add-new-h2"><?php echo esc_html_x('Add New', 'file'); ?></a> <?php 182 if ( isset($_ GET['s']) && $_GET['s'] )164 if ( isset($_REQUEST['s']) && $_REQUEST['s'] ) 183 165 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', get_search_query() ); ?> 184 166 </h2> … … 228 210 <?php } ?> 229 211 230 <ul class="subsubsub"> 231 <?php 232 $type_links = array(); 233 $_num_posts = (array) wp_count_attachments(); 234 $_total_posts = array_sum($_num_posts) - $_num_posts['trash']; 235 if ( !isset( $total_orphans ) ) 236 $total_orphans = $wpdb->get_var( "SELECT COUNT( * ) FROM $wpdb->posts WHERE post_type = 'attachment' AND post_status != 'trash' AND post_parent < 1" ); 237 $matches = wp_match_mime_types(array_keys($post_mime_types), array_keys($_num_posts)); 238 foreach ( $matches as $type => $reals ) 239 foreach ( $reals as $real ) 240 $num_posts[$type] = ( isset( $num_posts[$type] ) ) ? $num_posts[$type] + $_num_posts[$real] : $_num_posts[$real]; 241 242 $class = ( empty($_GET['post_mime_type']) && !isset($_GET['detached']) && !isset($_GET['status']) ) ? ' class="current"' : ''; 243 $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 foreach ( $post_mime_types as $mime_type => $label ) { 245 $class = ''; 246 247 if ( !wp_match_mime_types($mime_type, $avail_post_mime_types) ) 248 continue; 249 250 if ( !empty($_GET['post_mime_type']) && wp_match_mime_types($mime_type, $_GET['post_mime_type']) ) 251 $class = ' class="current"'; 252 if ( !empty( $num_posts[$mime_type] ) ) 253 $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 } 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>'; 256 257 if ( !empty($_num_posts['trash']) ) 258 $type_links[] = '<li><a href="upload.php?status=trash"' . ( (isset($_GET['status']) && $_GET['status'] == 'trash' ) ? ' class="current"' : '') . '>' . sprintf( _nx( 'Trash <span class="count">(%s)</span>', 'Trash <span class="count">(%s)</span>', $_num_posts['trash'], 'uploaded files' ), number_format_i18n( $_num_posts['trash'] ) ) . '</a>'; 259 260 echo implode( " |</li>\n", $type_links) . '</li>'; 261 unset($type_links); 262 ?> 263 </ul> 264 265 <form class="search-form" action="" method="get"> 266 <p class="search-box"> 267 <label class="screen-reader-text" for="media-search-input"><?php _e( 'Search Media' ); ?>:</label> 268 <input type="text" id="media-search-input" name="s" value="<?php the_search_query(); ?>" /> 269 <input type="submit" value="<?php esc_attr_e( 'Search Media' ); ?>" class="button" /> 270 </p> 212 <?php $wp_list_table->views(); ?> 213 214 <form id="posts-filter" action="" method="get"> 215 216 <?php $wp_list_table->search_box( __( 'Search Media' ), 'media' ); ?> 217 218 <?php $wp_list_table->display(); ?> 219 220 <div id="ajax-response"></div> 221 <?php find_posts_div(); ?> 222 <br class="clear" /> 223 271 224 </form> 272 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 <?php278 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_links296 ); 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 <?php316 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 <?php327 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 else335 $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 <?php352 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 363 <br class="clear" />364 </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 </form>502 <br class="clear" />503 504 225 </div> 505 226
Note: See TracChangeset
for help on using the changeset viewer.