[ Index ]

PHP Cross Reference of WordPress 3.0 beta 1

[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/wp-admin/ -> edit-attachment-rows.php (source)

   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="<?php echo get_edit_post_link( $post->ID, true ); ?>" title="<?php echo esc_attr(sprintf(__('Edit &#8220;%s&#8221;'), $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, true ); ?>" title="<?php echo esc_attr(sprintf(__('Edit &#8220;%s&#8221;'), $att_title)); ?>"><?php echo $att_title; ?></a><?php } ?></strong><br />
  88          <?php
  89          if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $post->ID ), $matches ) )
  90              echo esc_html( strtoupper( $matches[1] ) );
  91          else
  92              echo strtoupper( str_replace( 'image/', '', get_post_mime_type() ) );
  93          ?>
  94          <p>
  95          <?php
  96          $actions = array();
  97          if ( current_user_can('edit_post', $post->ID) && !$is_trash )
  98              $actions['edit'] = '<a href="' . get_edit_post_link($post->ID, true) . '">' . __('Edit') . '</a>';
  99          if ( current_user_can('delete_post', $post->ID) ) {
 100              if ( $is_trash )
 101                  $actions['untrash'] = "<a class='submitdelete' href='" . wp_nonce_url("post.php?action=untrash&amp;post=$post->ID", 'untrash-attachment_' . $post->ID) . "'>" . __('Restore') . "</a>";
 102              elseif ( EMPTY_TRASH_DAYS && MEDIA_TRASH )
 103                  $actions['trash'] = "<a class='submitdelete' href='" . wp_nonce_url("post.php?action=trash&amp;post=$post->ID", 'trash-attachment_' . $post->ID) . "'>" . __('Trash') . "</a>";
 104              if ( $is_trash || !EMPTY_TRASH_DAYS || !MEDIA_TRASH ) {
 105                  $delete_ays = (!$is_trash && !MEDIA_TRASH) ? " onclick='return showNotice.warn();'" : '';
 106                  $actions['delete'] = "<a class='submitdelete'$delete_ays href='" . wp_nonce_url("post.php?action=delete&amp;post=$post->ID", 'delete-attachment_' . $post->ID) . "'>" . __('Delete Permanently') . "</a>";
 107              }
 108          }
 109          if ( !$is_trash ) {
 110              $title =_draft_or_post_title($post->post_parent);
 111              $actions['view'] = '<a href="' . get_permalink($post->ID) . '" title="' . esc_attr(sprintf(__('View &#8220;%s&#8221;'), $title)) . '" rel="permalink">' . __('View') . '</a>';
 112          }
 113          $actions = apply_filters( 'media_row_actions', $actions, $post );
 114          $action_count = count($actions);
 115          $i = 0;
 116          echo '<div class="row-actions">';
 117          foreach ( $actions as $action => $link ) {
 118              ++$i;
 119              ( $i == $action_count ) ? $sep = '' : $sep = ' | ';
 120              echo "<span class='$action'>$link$sep</span>";
 121          }
 122          echo '</div>';
 123          ?></p></td>
 124          <?php
 125          break;
 126  
 127      case 'author':
 128          ?>
 129          <td <?php echo $attributes ?>><?php the_author() ?></td>
 130          <?php
 131          break;
 132  
 133      case 'tags':
 134          ?>
 135          <td <?php echo $attributes ?>><?php
 136          $tags = get_the_tags();
 137          if ( !empty( $tags ) ) {
 138              $out = array();
 139              foreach ( $tags as $c )
 140                  $out[] = "<a href='edit.php?tag=$c->slug'> " . esc_html(sanitize_term_field('name', $c->name, $c->term_id, 'post_tag', 'display')) . "</a>";
 141              echo join( ', ', $out );
 142          } else {
 143              _e('No Tags');
 144          }
 145          ?></td>
 146          <?php
 147          break;
 148  
 149      case 'desc':
 150          ?>
 151          <td <?php echo $attributes ?>><?php echo has_excerpt() ? $post->post_excerpt : ''; ?></td>
 152          <?php
 153          break;
 154  
 155      case 'date':
 156          if ( '0000-00-00 00:00:00' == $post->post_date && 'date' == $column_name ) {
 157              $t_time = $h_time = __('Unpublished');
 158          } else {
 159              $t_time = get_the_time(__('Y/m/d g:i:s A'));
 160              $m_time = $post->post_date;
 161              $time = get_post_time( 'G', true, $post, false );
 162              if ( ( abs($t_diff = time() - $time) ) < 86400 ) {
 163                  if ( $t_diff < 0 )
 164                      $h_time = sprintf( __('%s from now'), human_time_diff( $time ) );
 165                  else
 166                      $h_time = sprintf( __('%s ago'), human_time_diff( $time ) );
 167              } else {
 168                  $h_time = mysql2date(__('Y/m/d'), $m_time);
 169              }
 170          }
 171          ?>
 172          <td <?php echo $attributes ?>><?php echo $h_time ?></td>
 173          <?php
 174          break;
 175  
 176      case 'parent':
 177          if ( $post->post_parent > 0 ) {
 178              if ( get_post($post->post_parent) ) {
 179                  $title =_draft_or_post_title($post->post_parent);
 180              }
 181              ?>
 182              <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>
 183              <?php
 184          } else {
 185              ?>
 186              <td <?php echo $attributes ?>><?php _e('(Unattached)'); ?><br />
 187              <a class="hide-if-no-js" onclick="findPosts.open('media[]','<?php echo $post->ID ?>');return false;" href="#the-list"><?php _e('Attach'); ?></a></td>
 188              <?php
 189          }
 190  
 191          break;
 192  
 193      case 'comments':
 194          $attributes = 'class="comments column-comments num"' . $style;
 195          ?>
 196          <td <?php echo $attributes ?>><div class="post-com-count-wrapper">
 197          <?php
 198          $left = get_pending_comments_num( $post->ID );
 199          $pending_phrase = sprintf( __('%s pending'), number_format( $left ) );
 200          if ( $left )
 201              echo '<strong>';
 202          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>');
 203          if ( $left )
 204              echo '</strong>';
 205          ?>
 206          </div></td>
 207          <?php
 208          break;
 209  
 210      case 'actions':
 211          ?>
 212          <td <?php echo $attributes ?>>
 213          <a href="media.php?action=edit&amp;attachment_id=<?php the_ID(); ?>" title="<?php echo esc_attr(sprintf(__('Edit &#8220;%s&#8221;'), $att_title)); ?>"><?php _e('Edit'); ?></a> |
 214          <a href="<?php the_permalink(); ?>"><?php _e('Get permalink'); ?></a>
 215          </td>
 216          <?php
 217          break;
 218  
 219      default:
 220          ?>
 221          <td <?php echo $attributes ?>><?php do_action('manage_media_custom_column', $column_name, $id); ?></td>
 222          <?php
 223          break;
 224      }
 225  }
 226  ?>
 227      </tr>
 228  <?php endwhile; ?>
 229      </tbody>
 230  </table>
 231  <?php } else { ?>
 232  
 233  <p><?php _e('No media attachments found.') ?></p>
 234  
 235  <?php
 236  } // end if ( have_posts() )
 237  ?>
 238  


Generated: Mon Apr 5 14:26:09 2010 Cross-referenced by PHPXref 0.7