]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/class-wp-media-list-table.php
WordPress 4.4.2
[autoinstalls/wordpress.git] / wp-admin / includes / class-wp-media-list-table.php
1 <?php
2 /**
3  * List Table API: WP_Media_List_Table class
4  *
5  * @package WordPress
6  * @subpackage Administration
7  * @since 3.1.0
8  */
9
10 /**
11  * Core class used to implement displaying media items in a list table.
12  *
13  * @since 3.1.0
14  * @access private
15  *
16  * @see WP_List_Table
17  */
18 class WP_Media_List_Table extends WP_List_Table {
19         /**
20          * Holds the number of pending comments for each post.
21          *
22          * @since 4.4.0
23          * @var array
24          * @access protected
25          */
26         protected $comment_pending_count = array();
27
28         private $detached;
29
30         private $is_trash;
31
32         /**
33          * Constructor.
34          *
35          * @since 3.1.0
36          * @access public
37          *
38          * @see WP_List_Table::__construct() for more information on default arguments.
39          *
40          * @param array $args An associative array of arguments.
41          */
42         public function __construct( $args = array() ) {
43                 $this->detached = ( isset( $_REQUEST['attachment-filter'] ) && 'detached' === $_REQUEST['attachment-filter'] );
44
45                 $this->modes = array(
46                         'list' => __( 'List View' ),
47                         'grid' => __( 'Grid View' )
48                 );
49
50                 parent::__construct( array(
51                         'plural' => 'media',
52                         'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
53                 ) );
54         }
55
56         /**
57          *
58          * @return bool
59          */
60         public function ajax_user_can() {
61                 return current_user_can('upload_files');
62         }
63
64         /**
65          *
66          * @global WP_Query $wp_query
67          * @global array    $post_mime_types
68          * @global array    $avail_post_mime_types
69          * @global string   $mode
70          */
71         public function prepare_items() {
72                 global $wp_query, $post_mime_types, $avail_post_mime_types, $mode;
73
74                 list( $post_mime_types, $avail_post_mime_types ) = wp_edit_attachments_query( $_REQUEST );
75
76                 $this->is_trash = isset( $_REQUEST['attachment-filter'] ) && 'trash' === $_REQUEST['attachment-filter'];
77
78                 $mode = empty( $_REQUEST['mode'] ) ? 'list' : $_REQUEST['mode'];
79
80                 $this->set_pagination_args( array(
81                         'total_items' => $wp_query->found_posts,
82                         'total_pages' => $wp_query->max_num_pages,
83                         'per_page' => $wp_query->query_vars['posts_per_page'],
84                 ) );
85         }
86
87         /**
88          * @global array $post_mime_types
89          * @global array $avail_post_mime_types
90          * @return array
91          */
92         protected function get_views() {
93                 global $post_mime_types, $avail_post_mime_types;
94
95                 $type_links = array();
96
97                 $filter = empty( $_GET['attachment-filter'] ) ? '' : $_GET['attachment-filter'];
98
99                 $type_links['all'] = sprintf(
100                         '<option value=""%s>%s</option>',
101                         selected( $filter, true, false ),
102                         __( 'All media items' )
103                 );
104
105                 foreach ( $post_mime_types as $mime_type => $label ) {
106                         if ( ! wp_match_mime_types( $mime_type, $avail_post_mime_types ) ) {
107                                 continue;
108                         }
109
110                         $selected = selected(
111                                 $filter && 0 === strpos( $filter, 'post_mime_type:' ) &&
112                                         wp_match_mime_types( $mime_type, str_replace( 'post_mime_type:', '', $filter ) ),
113                                 true,
114                                 false
115                         );
116
117                         $type_links[$mime_type] = sprintf(
118                                 '<option value="post_mime_type:%s"%s>%s</option>',
119                                 esc_attr( $mime_type ),
120                                 $selected,
121                                 $label[0]
122                         );
123                 }
124                 $type_links['detached'] = '<option value="detached"' . ( $this->detached ? ' selected="selected"' : '' ) . '>' . __( 'Unattached' ) . '</option>';
125
126                 if ( $this->is_trash || ( defined( 'MEDIA_TRASH') && MEDIA_TRASH ) ) {
127                         $type_links['trash'] = sprintf(
128                                 '<option value="trash"%s>%s</option>',
129                                 selected( 'trash' === $filter, true, false ),
130                                 __( 'Trash' )
131                         );
132                 }
133                 return $type_links;
134         }
135
136         /**
137          *
138          * @return array
139          */
140         protected function get_bulk_actions() {
141                 $actions = array();
142                 if ( MEDIA_TRASH ) {
143                         if ( $this->is_trash ) {
144                                 $actions['untrash'] = __( 'Restore' );
145                                 $actions['delete'] = __( 'Delete Permanently' );
146                         } else {
147                                 $actions['trash'] = __( 'Trash' );
148                         }
149                 } else {
150                         $actions['delete'] = __( 'Delete Permanently' );
151                 }
152
153                 if ( $this->detached )
154                         $actions['attach'] = __( 'Attach' );
155
156                 return $actions;
157         }
158
159         /**
160          * @param string $which
161          */
162         protected function extra_tablenav( $which ) {
163                 if ( 'bar' !== $which ) {
164                         return;
165                 }
166 ?>
167                 <div class="actions">
168 <?php
169                 if ( ! is_singular() ) {
170                         if ( ! $this->is_trash ) {
171                                 $this->months_dropdown( 'attachment' );
172                         }
173
174                         /** This action is documented in wp-admin/includes/class-wp-posts-list-table.php */
175                         do_action( 'restrict_manage_posts', $this->screen->post_type );
176
177                         submit_button( __( 'Filter' ), 'button', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
178                 }
179
180                 if ( $this->is_trash && current_user_can( 'edit_others_posts' ) ) {
181                         submit_button( __( 'Empty Trash' ), 'apply', 'delete_all', false );
182                 } ?>
183                 </div>
184 <?php
185         }
186
187         /**
188          *
189          * @return string
190          */
191         public function current_action() {
192                 if ( isset( $_REQUEST['found_post_id'] ) && isset( $_REQUEST['media'] ) )
193                         return 'attach';
194
195                 if ( isset( $_REQUEST['parent_post_id'] ) && isset( $_REQUEST['media'] ) )
196                         return 'detach';
197
198                 if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) )
199                         return 'delete_all';
200
201                 return parent::current_action();
202         }
203
204         /**
205          *
206          * @return bool
207          */
208         public function has_items() {
209                 return have_posts();
210         }
211
212         /**
213          * @access public
214          */
215         public function no_items() {
216                 _e( 'No media attachments found.' );
217         }
218
219         /**
220          * Override parent views so we can use the filter bar display.
221          *
222          * @global string $mode
223          */
224         public function views() {
225                 global $mode;
226
227                 $views = $this->get_views();
228
229                 $this->screen->render_screen_reader_content( 'heading_views' );
230 ?>
231 <div class="wp-filter">
232         <div class="filter-items">
233                 <?php $this->view_switcher( $mode ); ?>
234
235                 <label for="attachment-filter" class="screen-reader-text"><?php _e( 'Filter by type' ); ?></label>
236                 <select class="attachment-filters" name="attachment-filter" id="attachment-filter">
237                         <?php
238                         if ( ! empty( $views ) ) {
239                                 foreach ( $views as $class => $view ) {
240                                         echo "\t$view\n";
241                                 }
242                         }
243                         ?>
244                 </select>
245
246 <?php
247                 $this->extra_tablenav( 'bar' );
248
249                 /** This filter is documented in wp-admin/inclues/class-wp-list-table.php */
250                 $views = apply_filters( "views_{$this->screen->id}", array() );
251
252                 // Back compat for pre-4.0 view links.
253                 if ( ! empty( $views ) ) {
254                         echo '<ul class="filter-links">';
255                         foreach ( $views as $class => $view ) {
256                                 echo "<li class='$class'>$view</li>";
257                         }
258                         echo '</ul>';
259                 }
260 ?>
261         </div>
262
263         <div class="search-form">
264                 <label for="media-search-input" class="screen-reader-text"><?php esc_html_e( 'Search Media' ); ?></label>
265                 <input type="search" placeholder="<?php esc_attr_e( 'Search' ) ?>" id="media-search-input" class="search" name="s" value="<?php _admin_search_query(); ?>"></div>
266         </div>
267         <?php
268         }
269
270         /**
271          *
272          * @return array
273          */
274         public function get_columns() {
275                 $posts_columns = array();
276                 $posts_columns['cb'] = '<input type="checkbox" />';
277                 /* translators: column name */
278                 $posts_columns['title'] = _x( 'File', 'column name' );
279                 $posts_columns['author'] = __( 'Author' );
280
281                 $taxonomies = get_taxonomies_for_attachments( 'objects' );
282                 $taxonomies = wp_filter_object_list( $taxonomies, array( 'show_admin_column' => true ), 'and', 'name' );
283
284                 /**
285                  * Filter the taxonomy columns for attachments in the Media list table.
286                  *
287                  * @since 3.5.0
288                  *
289                  * @param array  $taxonomies An array of registered taxonomies to show for attachments.
290                  * @param string $post_type  The post type. Default 'attachment'.
291                  */
292                 $taxonomies = apply_filters( 'manage_taxonomies_for_attachment_columns', $taxonomies, 'attachment' );
293                 $taxonomies = array_filter( $taxonomies, 'taxonomy_exists' );
294
295                 foreach ( $taxonomies as $taxonomy ) {
296                         if ( 'category' === $taxonomy ) {
297                                 $column_key = 'categories';
298                         } elseif ( 'post_tag' === $taxonomy ) {
299                                 $column_key = 'tags';
300                         } else {
301                                 $column_key = 'taxonomy-' . $taxonomy;
302                         }
303                         $posts_columns[ $column_key ] = get_taxonomy( $taxonomy )->labels->name;
304                 }
305
306                 /* translators: column name */
307                 if ( !$this->detached ) {
308                         $posts_columns['parent'] = _x( 'Uploaded to', 'column name' );
309                         if ( post_type_supports( 'attachment', 'comments' ) )
310                                 $posts_columns['comments'] = '<span class="vers comment-grey-bubble" title="' . esc_attr__( 'Comments' ) . '"><span class="screen-reader-text">' . __( 'Comments' ) . '</span></span>';
311                 }
312                 /* translators: column name */
313                 $posts_columns['date'] = _x( 'Date', 'column name' );
314                 /**
315                  * Filter the Media list table columns.
316                  *
317                  * @since 2.5.0
318                  *
319                  * @param array $posts_columns An array of columns displayed in the Media list table.
320                  * @param bool  $detached      Whether the list table contains media not attached
321                  *                             to any posts. Default true.
322                  */
323                 return apply_filters( 'manage_media_columns', $posts_columns, $this->detached );
324         }
325
326         /**
327          *
328          * @return array
329          */
330         protected function get_sortable_columns() {
331                 return array(
332                         'title'    => 'title',
333                         'author'   => 'author',
334                         'parent'   => 'parent',
335                         'comments' => 'comment_count',
336                         'date'     => array( 'date', true ),
337                 );
338         }
339
340         /**
341          * Handles the checkbox column output.
342          *
343          * @since 4.3.0
344          * @access public
345          *
346          * @param WP_Post $post The current WP_Post object.
347          */
348         public function column_cb( $post ) {
349                 if ( current_user_can( 'edit_post', $post->ID ) ) { ?>
350                         <label class="screen-reader-text" for="cb-select-<?php echo $post->ID; ?>"><?php
351                                 echo sprintf( __( 'Select %s' ), _draft_or_post_title() );
352                         ?></label>
353                         <input type="checkbox" name="media[]" id="cb-select-<?php echo $post->ID; ?>" value="<?php echo $post->ID; ?>" />
354                 <?php }
355         }
356
357         /**
358          * Handles the title column output.
359          *
360          * @since 4.3.0
361          * @access public
362          *
363          * @param WP_Post $post The current WP_Post object.
364          */
365         public function column_title( $post ) {
366                 list( $mime ) = explode( '/', $post->post_mime_type );
367
368                 $title = _draft_or_post_title();
369                 $thumb = wp_get_attachment_image( $post->ID, array( 60, 60 ), true, array( 'alt' => '' ) );
370                 $link_start = $link_end = '';
371
372                 if ( current_user_can( 'edit_post', $post->ID ) && ! $this->is_trash ) {
373                         $link_start = '<a href="' . get_edit_post_link( $post->ID ) . '">';
374                         $link_end = '</a>';
375                 }
376
377                 $class = $thumb ? ' class="has-media-icon"' : '';
378
379                 ?>
380                 <strong<?php echo $class; ?>>
381                         <?php echo $link_start; ?>
382                                 <?php if ( $thumb ) : ?>
383                                 <span class="media-icon <?php echo sanitize_html_class( $mime . '-icon' ); ?>"><?php echo $thumb; ?></span>
384                                 <?php endif; ?>
385
386                                 <span aria-hidden="true"><?php echo $title; ?></span>
387                                 <span class="screen-reader-text"><?php printf( __( 'Edit &#8220;%s&#8221;' ), $title ); ?></span>
388                         <?php echo $link_end; ?>
389                         <?php _media_states( $post ); ?>
390                 </strong>
391                 <p class="filename">
392                         <span class="screen-reader-text"><?php _e( 'File name:' ); ?> </span>
393                         <?php
394                         $file = get_attached_file( $post->ID );
395                         echo wp_basename( $file );
396                         ?>
397                 </p>
398                 <?php
399         }
400
401         /**
402          * Handles the author column output.
403          *
404          * @since 4.3.0
405          * @access public
406          *
407          * @param WP_Post $post The current WP_Post object.
408          */
409         public function column_author( $post ) {
410                 printf( '<a href="%s">%s</a>',
411                         esc_url( add_query_arg( array( 'author' => get_the_author_meta('ID') ), 'upload.php' ) ),
412                         get_the_author()
413                 );
414         }
415
416         /**
417          * Handles the description column output.
418          *
419          * @since 4.3.0
420          * @access public
421          *
422          * @param WP_Post $post The current WP_Post object.
423          */
424         public function column_desc( $post ) {
425                 echo has_excerpt() ? $post->post_excerpt : '';
426         }
427
428         /**
429          * Handles the date column output.
430          *
431          * @since 4.3.0
432          * @access public
433          *
434          * @param WP_Post $post The current WP_Post object.
435          */
436         public function column_date( $post ) {
437                 if ( '0000-00-00 00:00:00' === $post->post_date ) {
438                         $h_time = __( 'Unpublished' );
439                 } else {
440                         $m_time = $post->post_date;
441                         $time = get_post_time( 'G', true, $post, false );
442                         if ( ( abs( $t_diff = time() - $time ) ) < DAY_IN_SECONDS ) {
443                                 if ( $t_diff < 0 ) {
444                                         $h_time = sprintf( __( '%s from now' ), human_time_diff( $time ) );
445                                 } else {
446                                         $h_time = sprintf( __( '%s ago' ), human_time_diff( $time ) );
447                                 }
448                         } else {
449                                 $h_time = mysql2date( __( 'Y/m/d' ), $m_time );
450                         }
451                 }
452
453                 echo $h_time;
454         }
455
456         /**
457          * Handles the parent column output.
458          *
459          * @since 4.3.0
460          * @access public
461          *
462          * @param WP_Post $post The current WP_Post object.
463          */
464         public function column_parent( $post ) {
465                 $user_can_edit = current_user_can( 'edit_post', $post->ID );
466
467                 if ( $post->post_parent > 0 ) {
468                         $parent = get_post( $post->post_parent );
469                 } else {
470                         $parent = false;
471                 }
472
473                 if ( $parent ) {
474                         $title = _draft_or_post_title( $post->post_parent );
475                         $parent_type = get_post_type_object( $parent->post_type );
476 ?>
477                         <strong>
478                         <?php if ( $parent_type && $parent_type->show_ui && current_user_can( 'edit_post', $post->post_parent ) ) { ?>
479                                 <a href="<?php echo get_edit_post_link( $post->post_parent ); ?>">
480                                         <?php echo $title ?></a><?php
481                         } else {
482                                 echo $title;
483                         } ?></strong>
484                         <br />
485                         <?php
486                         if ( $user_can_edit ):
487                                 $detach_url = add_query_arg( array(
488                                         'parent_post_id' => $post->post_parent,
489                                         'media[]' => $post->ID,
490                                         '_wpnonce' => wp_create_nonce( 'bulk-' . $this->_args['plural'] )
491                                 ), 'upload.php' ); ?>
492                         <a class="hide-if-no-js detach-from-parent" href="<?php echo $detach_url ?>"><?php _e( 'Detach' ); ?></a>
493                         <?php endif;
494                 } else {
495                         _e( '(Unattached)' ); ?><br />
496                         <?php if ( $user_can_edit ) { ?>
497                                 <a class="hide-if-no-js"
498                                         onclick="findPosts.open( 'media[]','<?php echo $post->ID ?>' ); return false;"
499                                         href="#the-list">
500                                         <?php _e( 'Attach' ); ?></a>
501                         <?php }
502                 }
503         }
504
505         /**
506          * Handles the comments column output.
507          *
508          * @since 4.3.0
509          * @access public
510          *
511          * @param WP_Post $post The current WP_Post object.
512          */
513         public function column_comments( $post ) {
514                 echo '<div class="post-com-count-wrapper">';
515
516                 if ( isset( $this->comment_pending_count[ $post->ID ] ) ) {
517                         $pending_comments = $this->comment_pending_count[ $post->ID ];
518                 } else {
519                         $pending_comments = get_pending_comments_num( $post->ID );
520                 }
521
522                 $this->comments_bubble( $post->ID, $pending_comments );
523
524                 echo '</div>';
525         }
526
527         /**
528          * Handles output for the default column.
529          *
530          * @since 4.3.0
531          * @access public
532          *
533          * @param WP_Post $post        The current WP_Post object.
534          * @param string  $column_name Current column name.
535          */
536         public function column_default( $post, $column_name ) {
537                 if ( 'categories' === $column_name ) {
538                         $taxonomy = 'category';
539                 } elseif ( 'tags' === $column_name ) {
540                         $taxonomy = 'post_tag';
541                 } elseif ( 0 === strpos( $column_name, 'taxonomy-' ) ) {
542                         $taxonomy = substr( $column_name, 9 );
543                 } else {
544                         $taxonomy = false;
545                 }
546
547                 if ( $taxonomy ) {
548                         $terms = get_the_terms( $post->ID, $taxonomy );
549                         if ( is_array( $terms ) ) {
550                                 $out = array();
551                                 foreach ( $terms as $t ) {
552                                         $posts_in_term_qv = array();
553                                         $posts_in_term_qv['taxonomy'] = $taxonomy;
554                                         $posts_in_term_qv['term'] = $t->slug;
555
556                                         $out[] = sprintf( '<a href="%s">%s</a>',
557                                                 esc_url( add_query_arg( $posts_in_term_qv, 'upload.php' ) ),
558                                                 esc_html( sanitize_term_field( 'name', $t->name, $t->term_id, $taxonomy, 'display' ) )
559                                         );
560                                 }
561                                 /* translators: used between list items, there is a space after the comma */
562                                 echo join( __( ', ' ), $out );
563                         } else {
564                                 echo '<span aria-hidden="true">&#8212;</span><span class="screen-reader-text">' . get_taxonomy( $taxonomy )->labels->no_terms . '</span>';
565                         }
566
567                         return;
568                 }
569
570                 /**
571                  * Fires for each custom column in the Media list table.
572                  *
573                  * Custom columns are registered using the {@see 'manage_media_columns'} filter.
574                  *
575                  * @since 2.5.0
576                  *
577                  * @param string $column_name Name of the custom column.
578                  * @param int    $post_id     Attachment ID.
579                  */
580                 do_action( 'manage_media_custom_column', $column_name, $post->ID );
581         }
582
583         /**
584          *
585          * @global WP_Post $post
586          */
587         public function display_rows() {
588                 global $post, $wp_query;
589
590                 $post_ids = wp_list_pluck( $wp_query->posts, 'ID' );
591                 reset( $wp_query->posts );
592
593                 $this->comment_pending_count = get_pending_comments_num( $post_ids );
594
595                 add_filter( 'the_title','esc_html' );
596
597                 while ( have_posts() ) : the_post();
598                         if (
599                                 ( $this->is_trash && $post->post_status != 'trash' )
600                                 || ( ! $this->is_trash && $post->post_status === 'trash' )
601                         ) {
602                                 continue;
603                         }
604                         $post_owner = ( get_current_user_id() == $post->post_author ) ? 'self' : 'other';
605                 ?>
606                         <tr id="post-<?php echo $post->ID; ?>" class="<?php echo trim( ' author-' . $post_owner . ' status-' . $post->post_status ); ?>">
607                                 <?php $this->single_row_columns( $post ); ?>
608                         </tr>
609                 <?php
610                 endwhile;
611         }
612
613         /**
614          * Gets the name of the default primary column.
615          *
616          * @since 4.3.0
617          * @access protected
618          *
619          * @return string Name of the default primary column, in this case, 'title'.
620          */
621         protected function get_default_primary_column_name() {
622                 return 'title';
623         }
624
625         /**
626          * @param WP_Post $post
627          * @param string  $att_title
628          *
629          * @return array
630          */
631         private function _get_row_actions( $post, $att_title ) {
632                 $actions = array();
633
634                 if ( $this->detached ) {
635                         if ( current_user_can( 'edit_post', $post->ID ) )
636                                 $actions['edit'] = '<a href="' . get_edit_post_link( $post->ID ) . '">' . __( 'Edit' ) . '</a>';
637                         if ( current_user_can( 'delete_post', $post->ID ) )
638                                 if ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) {
639                                         $actions['trash'] = "<a class='submitdelete' href='" . wp_nonce_url( "post.php?action=trash&amp;post=$post->ID", 'trash-post_' . $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
640                                 } else {
641                                         $delete_ays = !MEDIA_TRASH ? " onclick='return showNotice.warn();'" : '';
642                                         $actions['delete'] = "<a class='submitdelete'$delete_ays href='" . wp_nonce_url( "post.php?action=delete&amp;post=$post->ID", 'delete-post_' . $post->ID ) . "'>" . __( 'Delete Permanently' ) . "</a>";
643                                 }
644                         $actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $att_title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
645                         if ( current_user_can( 'edit_post', $post->ID ) )
646                                 $actions['attach'] = '<a href="#the-list" onclick="findPosts.open( \'media[]\',\''.$post->ID.'\' );return false;" class="hide-if-no-js">'.__( 'Attach' ).'</a>';
647                 }
648                 else {
649                         if ( current_user_can( 'edit_post', $post->ID ) && !$this->is_trash )
650                                 $actions['edit'] = '<a href="' . get_edit_post_link( $post->ID ) . '">' . __( 'Edit' ) . '</a>';
651                         if ( current_user_can( 'delete_post', $post->ID ) ) {
652                                 if ( $this->is_trash )
653                                         $actions['untrash'] = "<a class='submitdelete' href='" . wp_nonce_url( "post.php?action=untrash&amp;post=$post->ID", 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore' ) . "</a>";
654                                 elseif ( EMPTY_TRASH_DAYS && MEDIA_TRASH )
655                                         $actions['trash'] = "<a class='submitdelete' href='" . wp_nonce_url( "post.php?action=trash&amp;post=$post->ID", 'trash-post_' . $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
656                                 if ( $this->is_trash || !EMPTY_TRASH_DAYS || !MEDIA_TRASH ) {
657                                         $delete_ays = ( !$this->is_trash && !MEDIA_TRASH ) ? " onclick='return showNotice.warn();'" : '';
658                                         $actions['delete'] = "<a class='submitdelete'$delete_ays href='" . wp_nonce_url( "post.php?action=delete&amp;post=$post->ID", 'delete-post_' . $post->ID ) . "'>" . __( 'Delete Permanently' ) . "</a>";
659                                 }
660                         }
661                         if ( !$this->is_trash ) {
662                                 $title =_draft_or_post_title( $post->post_parent );
663                                 $actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
664                         }
665                 }
666
667                 /**
668                  * Filter the action links for each attachment in the Media list table.
669                  *
670                  * @since 2.8.0
671                  *
672                  * @param array   $actions  An array of action links for each attachment.
673                  *                          Default 'Edit', 'Delete Permanently', 'View'.
674                  * @param WP_Post $post     WP_Post object for the current attachment.
675                  * @param bool    $detached Whether the list table contains media not attached
676                  *                          to any posts. Default true.
677                  */
678                 return apply_filters( 'media_row_actions', $actions, $post, $this->detached );
679         }
680
681         /**
682          * Generates and displays row action links.
683          *
684          * @since 4.3.0
685          * @access protected
686          *
687          * @param object $post        Attachment being acted upon.
688          * @param string $column_name Current column name.
689          * @param string $primary     Primary column name.
690          * @return string Row actions output for media attachments.
691          */
692         protected function handle_row_actions( $post, $column_name, $primary ) {
693                 if ( $primary !== $column_name ) {
694                         return '';
695                 }
696
697                 $att_title = _draft_or_post_title();
698                 return $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
699         }
700 }