| [ Root ] [ Index ] |
PHP Cross Reference of WordPress 2.9Provided by Yoast |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Edit attachments table for inclusion in administration panels. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 8 9 // don't load directly 10 if ( !defined('ABSPATH') ) 11 die('-1'); 12 13 if ( have_posts() ) { ?> 14 <table class="widefat fixed" cellspacing="0"> 15 <thead> 16 <tr> 17 <?php print_column_headers('upload'); ?> 18 </tr> 19 </thead> 20 21 <tfoot> 22 <tr> 23 <?php print_column_headers('upload', false); ?> 24 </tr> 25 </tfoot> 26 27 <tbody id="the-list" class="list:post"> 28 <?php 29 add_filter('the_title','esc_html'); 30 $alt = ''; 31 $posts_columns = get_column_headers('upload'); 32 $hidden = get_hidden_columns('upload'); 33 34 while ( have_posts() ) : the_post(); 35 36 if ( $is_trash && $post->post_status != 'trash' ) 37 continue; 38 elseif ( !$is_trash && $post->post_status == 'trash' ) 39 continue; 40 41 $alt = ( 'alternate' == $alt ) ? '' : 'alternate'; 42 global $current_user; 43 $post_owner = ( $current_user->ID == $post->post_author ? 'self' : 'other' ); 44 $att_title = _draft_or_post_title(); 45 ?> 46 <tr id='post-<?php echo $id; ?>' class='<?php echo trim( $alt . ' author-' . $post_owner . ' status-' . $post->post_status ); ?>' valign="top"> 47 48 <?php 49 foreach ($posts_columns as $column_name => $column_display_name ) { 50 $class = "class=\"$column_name column-$column_name\""; 51 52 $style = ''; 53 if ( in_array($column_name, $hidden) ) 54 $style = ' style="display:none;"'; 55 56 $attributes = "$class$style"; 57 58 switch($column_name) { 59 60 case 'cb': 61 ?> 62 <th scope="row" class="check-column"><?php if ( current_user_can('edit_post', $post->ID) ) { ?><input type="checkbox" name="media[]" value="<?php the_ID(); ?>" /><?php } ?></th> 63 <?php 64 break; 65 66 case 'icon': 67 $attributes = 'class="column-icon media-icon"' . $style; 68 ?> 69 <td <?php echo $attributes ?>><?php 70 if ( $thumb = wp_get_attachment_image( $post->ID, array(80, 60), true ) ) { 71 if ( $is_trash ) echo $thumb; 72 else { 73 ?> 74 <a href="media.php?action=edit&attachment_id=<?php the_ID(); ?>" title="<?php echo esc_attr(sprintf(__('Edit “%s”'), $att_title)); ?>"> 75 <?php echo $thumb; ?> 76 </a> 77 78 <?php } 79 } 80 ?></td> 81 <?php 82 // TODO 83 break; 84 85 case 'media': 86 ?> 87 <td <?php echo $attributes ?>><strong><?php if ( $is_trash ) echo $att_title; else { ?><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><?php } ?></strong><br /> 88 <?php echo strtoupper(preg_replace('/^.*?\.(\w+)$/', '$1', get_attached_file($post->ID))); ?> 89 <p> 90 <?php 91 $actions = array(); 92 if ( current_user_can('edit_post', $post->ID) && !$is_trash ) 93 $actions['edit'] = '<a href="' . get_edit_post_link($post->ID, true) . '">' . __('Edit') . '</a>'; 94 if ( current_user_can('delete_post', $post->ID) ) { 95 if ( $is_trash ) 96 $actions['untrash'] = "<a class='submitdelete' href='" . wp_nonce_url("post.php?action=untrash&post=$post->ID", 'untrash-post_' . $post->ID) . "'>" . __('Restore') . "</a>"; 97 elseif ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) 98 $actions['trash'] = "<a class='submitdelete' href='" . wp_nonce_url("post.php?action=trash&post=$post->ID", 'trash-post_' . $post->ID) . "'>" . __('Trash') . "</a>"; 99 if ( $is_trash || !EMPTY_TRASH_DAYS || !MEDIA_TRASH ) 100 $actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url("post.php?action=delete&post=$post->ID", 'delete-post_' . $post->ID) . "'>" . __('Delete Permanently') . "</a>"; 101 } 102 if ( !$is_trash ) 103 $actions['view'] = '<a href="' . get_permalink($post->ID) . '" title="' . esc_attr(sprintf(__('View “%s”'), $title)) . '" rel="permalink">' . __('View') . '</a>'; 104 $actions = apply_filters( 'media_row_actions', $actions, $post ); 105 $action_count = count($actions); 106 $i = 0; 107 echo '<div class="row-actions">'; 108 foreach ( $actions as $action => $link ) { 109 ++$i; 110 ( $i == $action_count ) ? $sep = '' : $sep = ' | '; 111 echo "<span class='$action'>$link$sep</span>"; 112 } 113 echo '</div>'; 114 ?></p></td> 115 <?php 116 break; 117 118 case 'author': 119 ?> 120 <td <?php echo $attributes ?>><?php the_author() ?></td> 121 <?php 122 break; 123 124 case 'tags': 125 ?> 126 <td <?php echo $attributes ?>><?php 127 $tags = get_the_tags(); 128 if ( !empty( $tags ) ) { 129 $out = array(); 130 foreach ( $tags as $c ) 131 $out[] = "<a href='edit.php?tag=$c->slug'> " . esc_html(sanitize_term_field('name', $c->name, $c->term_id, 'post_tag', 'display')) . "</a>"; 132 echo join( ', ', $out ); 133 } else { 134 _e('No Tags'); 135 } 136 ?></td> 137 <?php 138 break; 139 140 case 'desc': 141 ?> 142 <td <?php echo $attributes ?>><?php echo has_excerpt() ? $post->post_excerpt : ''; ?></td> 143 <?php 144 break; 145 146 case 'date': 147 if ( '0000-00-00 00:00:00' == $post->post_date && 'date' == $column_name ) { 148 $t_time = $h_time = __('Unpublished'); 149 } else { 150 $t_time = get_the_time(__('Y/m/d g:i:s A')); 151 $m_time = $post->post_date; 152 $time = get_post_time( 'G', true, $post, false ); 153 if ( ( abs($t_diff = time() - $time) ) < 86400 ) { 154 if ( $t_diff < 0 ) 155 $h_time = sprintf( __('%s from now'), human_time_diff( $time ) ); 156 else 157 $h_time = sprintf( __('%s ago'), human_time_diff( $time ) ); 158 } else { 159 $h_time = mysql2date(__('Y/m/d'), $m_time); 160 } 161 } 162 ?> 163 <td <?php echo $attributes ?>><?php echo $h_time ?></td> 164 <?php 165 break; 166 167 case 'parent': 168 if ( $post->post_parent > 0 ) { 169 if ( get_post($post->post_parent) ) { 170 $title =_draft_or_post_title($post->post_parent); 171 } 172 ?> 173 <td <?php echo $attributes ?>><strong><a href="<?php echo get_edit_post_link( $post->post_parent ); ?>"><?php echo $title ?></a></strong>, <?php echo get_the_time(__('Y/m/d')); ?></td> 174 <?php 175 } else { 176 ?> 177 <td <?php echo $attributes ?>><?php _e('(Unattached)'); ?><br /> 178 <a class="hide-if-no-js" onclick="findPosts.open('media[]','<?php echo $post->ID ?>');return false;" href="#the-list"><?php _e('Attach'); ?></a></td> 179 <?php 180 } 181 182 break; 183 184 case 'comments': 185 $attributes = 'class="comments column-comments num"' . $style; 186 ?> 187 <td <?php echo $attributes ?>><div class="post-com-count-wrapper"> 188 <?php 189 $left = get_pending_comments_num( $post->ID ); 190 $pending_phrase = sprintf( __('%s pending'), number_format( $left ) ); 191 if ( $left ) 192 echo '<strong>'; 193 comments_number("<a href='edit-comments.php?p=$id' title='$pending_phrase' class='post-com-count'><span class='comment-count'>" . /* translators: comment count link */ _x('0', 'comment count') . '</span></a>', "<a href='edit-comments.php?p=$id' title='$pending_phrase' class='post-com-count'><span class='comment-count'>" . /* translators: comment count link */ _x('1', 'comment count') . '</span></a>', "<a href='edit-comments.php?p=$id' title='$pending_phrase' class='post-com-count'><span class='comment-count'>" . /* translators: comment count link: % will be substituted by comment count */ _x('%', 'comment count') . '</span></a>'); 194 if ( $left ) 195 echo '</strong>'; 196 ?> 197 </div></td> 198 <?php 199 break; 200 201 case 'actions': 202 ?> 203 <td <?php echo $attributes ?>> 204 <a href="media.php?action=edit&attachment_id=<?php the_ID(); ?>" title="<?php echo esc_attr(sprintf(__('Edit “%s”'), $att_title)); ?>"><?php _e('Edit'); ?></a> | 205 <a href="<?php the_permalink(); ?>"><?php _e('Get permalink'); ?></a> 206 </td> 207 <?php 208 break; 209 210 default: 211 ?> 212 <td <?php echo $attributes ?>><?php do_action('manage_media_custom_column', $column_name, $id); ?></td> 213 <?php 214 break; 215 } 216 } 217 ?> 218 </tr> 219 <?php endwhile; ?> 220 </tbody> 221 </table> 222 <?php } else { ?> 223 224 <p><?php _e('No media attachments found.') ?></p> 225 226 <?php 227 } // end if ( have_posts() ) 228 ?> 229
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Jan 27 21:34:27 2010 | Cross-referenced by PHPXref 0.7 |