2010-10-25 04:57:43 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2015-10-17 17:13:25 +02:00
|
|
|
* List Table API: WP_Media_List_Table class
|
2010-10-25 04:57:43 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2015-10-17 17:13:25 +02:00
|
|
|
* @subpackage Administration
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Core class used to implement displaying media items in a list table.
|
|
|
|
*
|
2010-10-25 06:04:18 +02:00
|
|
|
* @since 3.1.0
|
2011-01-16 22:47:24 +01:00
|
|
|
* @access private
|
2015-10-17 17:13:25 +02:00
|
|
|
*
|
|
|
|
* @see WP_List_Table
|
2010-10-25 04:57:43 +02:00
|
|
|
*/
|
2010-11-04 09:07:03 +01:00
|
|
|
class WP_Media_List_Table extends WP_List_Table {
|
2015-09-14 21:25:25 +02:00
|
|
|
/**
|
2015-10-16 20:23:27 +02:00
|
|
|
* Holds the number of pending comments for each post.
|
2015-09-14 21:25:25 +02:00
|
|
|
*
|
|
|
|
* @since 4.4.0
|
|
|
|
* @var array
|
|
|
|
*/
|
2015-10-16 20:23:27 +02:00
|
|
|
protected $comment_pending_count = array();
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-01-12 17:08:21 +01:00
|
|
|
private $detached;
|
|
|
|
|
|
|
|
private $is_trash;
|
|
|
|
|
2014-08-10 04:18:17 +02:00
|
|
|
/**
|
|
|
|
* Constructor.
|
2014-08-20 19:09:15 +02:00
|
|
|
*
|
2014-08-10 04:18:17 +02:00
|
|
|
* @since 3.1.0
|
|
|
|
*
|
|
|
|
* @see WP_List_Table::__construct() for more information on default arguments.
|
|
|
|
*
|
|
|
|
* @param array $args An associative array of arguments.
|
2014-08-20 19:09:15 +02:00
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
public function __construct( $args = array() ) {
|
2014-08-26 17:58:15 +02:00
|
|
|
$this->detached = ( isset( $_REQUEST['attachment-filter'] ) && 'detached' === $_REQUEST['attachment-filter'] );
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2014-11-01 20:56:24 +01:00
|
|
|
$this->modes = array(
|
|
|
|
'list' => __( 'List View' ),
|
2017-12-01 00:11:00 +01:00
|
|
|
'grid' => __( 'Grid View' ),
|
2014-11-01 20:56:24 +01:00
|
|
|
);
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'plural' => 'media',
|
|
|
|
'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
|
|
|
|
)
|
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
public function ajax_user_can() {
|
2017-12-01 00:11:00 +01:00
|
|
|
return current_user_can( 'upload_files' );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-28 23:41:30 +02:00
|
|
|
/**
|
2019-08-04 03:59:56 +02:00
|
|
|
* @global WP_Query $wp_query WordPress Query object.
|
2015-05-28 23:41:30 +02:00
|
|
|
* @global array $post_mime_types
|
|
|
|
* @global array $avail_post_mime_types
|
|
|
|
* @global string $mode
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
public function prepare_items() {
|
2014-08-20 19:09:15 +02:00
|
|
|
global $wp_query, $post_mime_types, $avail_post_mime_types, $mode;
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2014-08-20 19:09:15 +02:00
|
|
|
list( $post_mime_types, $avail_post_mime_types ) = wp_edit_attachments_query( $_REQUEST );
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->is_trash = isset( $_REQUEST['attachment-filter'] ) && 'trash' === $_REQUEST['attachment-filter'];
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$mode = empty( $_REQUEST['mode'] ) ? 'list' : $_REQUEST['mode'];
|
2014-06-06 00:01:18 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->set_pagination_args(
|
|
|
|
array(
|
|
|
|
'total_items' => $wp_query->found_posts,
|
|
|
|
'total_pages' => $wp_query->max_num_pages,
|
|
|
|
'per_page' => $wp_query->query_vars['posts_per_page'],
|
|
|
|
)
|
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-28 23:41:30 +02:00
|
|
|
/**
|
|
|
|
* @global array $post_mime_types
|
|
|
|
* @global array $avail_post_mime_types
|
|
|
|
* @return array
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
protected function get_views() {
|
2015-09-17 04:30:26 +02:00
|
|
|
global $post_mime_types, $avail_post_mime_types;
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
$type_links = array();
|
2015-09-17 04:30:26 +02:00
|
|
|
|
|
|
|
$filter = empty( $_GET['attachment-filter'] ) ? '' : $_GET['attachment-filter'];
|
|
|
|
|
|
|
|
$type_links['all'] = sprintf(
|
|
|
|
'<option value=""%s>%s</option>',
|
|
|
|
selected( $filter, true, false ),
|
|
|
|
__( 'All media items' )
|
|
|
|
);
|
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
foreach ( $post_mime_types as $mime_type => $label ) {
|
2015-09-17 04:30:26 +02:00
|
|
|
if ( ! wp_match_mime_types( $mime_type, $avail_post_mime_types ) ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
continue;
|
2015-09-17 04:30:26 +02:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-09-17 04:30:26 +02:00
|
|
|
$selected = selected(
|
|
|
|
$filter && 0 === strpos( $filter, 'post_mime_type:' ) &&
|
|
|
|
wp_match_mime_types( $mime_type, str_replace( 'post_mime_type:', '', $filter ) ),
|
|
|
|
true,
|
2015-09-22 08:06:25 +02:00
|
|
|
false
|
2015-09-17 04:30:26 +02:00
|
|
|
);
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$type_links[ $mime_type ] = sprintf(
|
2015-09-17 04:30:26 +02:00
|
|
|
'<option value="post_mime_type:%s"%s>%s</option>',
|
|
|
|
esc_attr( $mime_type ),
|
|
|
|
$selected,
|
|
|
|
$label[0]
|
|
|
|
);
|
|
|
|
}
|
2018-05-01 23:47:21 +02:00
|
|
|
|
2015-09-17 04:30:26 +02:00
|
|
|
$type_links['detached'] = '<option value="detached"' . ( $this->detached ? ' selected="selected"' : '' ) . '>' . __( 'Unattached' ) . '</option>';
|
|
|
|
|
2018-05-01 23:47:21 +02:00
|
|
|
$type_links['mine'] = sprintf(
|
|
|
|
'<option value="mine"%s>%s</option>',
|
|
|
|
selected( 'mine' === $filter, true, false ),
|
|
|
|
_x( 'Mine', 'media items' )
|
|
|
|
);
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->is_trash || ( defined( 'MEDIA_TRASH' ) && MEDIA_TRASH ) ) {
|
2015-09-17 04:30:26 +02:00
|
|
|
$type_links['trash'] = sprintf(
|
|
|
|
'<option value="trash"%s>%s</option>',
|
|
|
|
selected( 'trash' === $filter, true, false ),
|
2015-12-13 20:03:26 +01:00
|
|
|
_x( 'Trash', 'attachment filter' )
|
2015-09-17 04:30:26 +02:00
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
2018-05-01 17:43:22 +02:00
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
return $type_links;
|
|
|
|
}
|
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
protected function get_bulk_actions() {
|
2010-10-25 04:57:43 +02:00
|
|
|
$actions = array();
|
2014-10-02 05:12:18 +02:00
|
|
|
if ( MEDIA_TRASH ) {
|
|
|
|
if ( $this->is_trash ) {
|
|
|
|
$actions['untrash'] = __( 'Restore' );
|
2017-12-01 00:11:00 +01:00
|
|
|
$actions['delete'] = __( 'Delete Permanently' );
|
2014-10-02 05:12:18 +02:00
|
|
|
} else {
|
2019-04-09 01:54:52 +02:00
|
|
|
$actions['trash'] = __( 'Move to Trash' );
|
2014-10-02 05:12:18 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$actions['delete'] = __( 'Delete Permanently' );
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->detached ) {
|
2015-08-30 05:10:21 +02:00
|
|
|
$actions['attach'] = __( 'Attach' );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
return $actions;
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:33:23 +01:00
|
|
|
/**
|
|
|
|
* @param string $which
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
protected function extra_tablenav( $which ) {
|
2014-08-26 17:58:15 +02:00
|
|
|
if ( 'bar' !== $which ) {
|
|
|
|
return;
|
|
|
|
}
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2014-08-26 17:58:15 +02:00
|
|
|
<div class="actions">
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
|
|
|
if ( ! is_singular() ) {
|
|
|
|
if ( ! $this->is_trash ) {
|
|
|
|
$this->months_dropdown( 'attachment' );
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2018-08-17 03:51:36 +02:00
|
|
|
/** This action is documented in wp-admin/includes/class-wp-posts-list-table.php */
|
|
|
|
do_action( 'restrict_manage_posts', $this->screen->post_type, $which );
|
2015-09-14 21:25:25 +02:00
|
|
|
|
2018-08-17 03:51:36 +02:00
|
|
|
submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2018-08-17 03:51:36 +02:00
|
|
|
if ( $this->is_trash && current_user_can( 'edit_others_posts' ) && $this->has_items() ) {
|
|
|
|
submit_button( __( 'Empty Trash' ), 'apply', 'delete_all', false );
|
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
?>
|
2010-10-25 04:57:43 +02:00
|
|
|
</div>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
public function current_action() {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $_REQUEST['found_post_id'] ) && isset( $_REQUEST['media'] ) ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
return 'attach';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $_REQUEST['parent_post_id'] ) && isset( $_REQUEST['media'] ) ) {
|
2015-03-05 06:35:28 +01:00
|
|
|
return 'detach';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-03-05 06:35:28 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
return 'delete_all';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
return parent::current_action();
|
|
|
|
}
|
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
public function has_items() {
|
2010-10-25 04:57:43 +02:00
|
|
|
return have_posts();
|
|
|
|
}
|
|
|
|
|
2015-05-29 23:32:24 +02:00
|
|
|
/**
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
public function no_items() {
|
2016-03-08 18:43:25 +01:00
|
|
|
_e( 'No media files found.' );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2014-08-26 17:58:15 +02:00
|
|
|
/**
|
|
|
|
* Override parent views so we can use the filter bar display.
|
2015-05-28 23:41:30 +02:00
|
|
|
*
|
2017-03-22 04:47:07 +01:00
|
|
|
* @global string $mode List table view mode.
|
2014-08-26 17:58:15 +02:00
|
|
|
*/
|
|
|
|
public function views() {
|
|
|
|
global $mode;
|
|
|
|
|
|
|
|
$views = $this->get_views();
|
2015-10-07 03:28:25 +02:00
|
|
|
|
|
|
|
$this->screen->render_screen_reader_content( 'heading_views' );
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2014-08-26 17:58:15 +02:00
|
|
|
<div class="wp-filter">
|
2014-12-11 05:12:23 +01:00
|
|
|
<div class="filter-items">
|
|
|
|
<?php $this->view_switcher( $mode ); ?>
|
|
|
|
|
2015-03-31 21:57:26 +02:00
|
|
|
<label for="attachment-filter" class="screen-reader-text"><?php _e( 'Filter by type' ); ?></label>
|
|
|
|
<select class="attachment-filters" name="attachment-filter" id="attachment-filter">
|
2014-12-11 05:12:23 +01:00
|
|
|
<?php
|
|
|
|
if ( ! empty( $views ) ) {
|
|
|
|
foreach ( $views as $class => $view ) {
|
|
|
|
echo "\t$view\n";
|
|
|
|
}
|
2014-08-26 17:58:15 +02:00
|
|
|
}
|
2014-12-11 05:12:23 +01:00
|
|
|
?>
|
|
|
|
</select>
|
2014-08-26 17:58:15 +02:00
|
|
|
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2014-12-11 05:12:23 +01:00
|
|
|
$this->extra_tablenav( 'bar' );
|
2014-08-26 17:58:15 +02:00
|
|
|
|
2014-12-11 05:12:23 +01:00
|
|
|
/** This filter is documented in wp-admin/inclues/class-wp-list-table.php */
|
|
|
|
$views = apply_filters( "views_{$this->screen->id}", array() );
|
2014-08-26 17:58:15 +02:00
|
|
|
|
2014-12-11 05:12:23 +01:00
|
|
|
// Back compat for pre-4.0 view links.
|
2018-08-17 03:51:36 +02:00
|
|
|
if ( ! empty( $views ) ) {
|
|
|
|
echo '<ul class="filter-links">';
|
|
|
|
foreach ( $views as $class => $view ) {
|
|
|
|
echo "<li class='$class'>$view</li>";
|
|
|
|
}
|
|
|
|
echo '</ul>';
|
|
|
|
}
|
|
|
|
?>
|
2014-12-11 05:12:23 +01:00
|
|
|
</div>
|
2014-08-26 17:58:15 +02:00
|
|
|
|
|
|
|
<div class="search-form">
|
2019-10-07 14:43:03 +02:00
|
|
|
<label for="media-search-input" class="media-search-input-label"><?php esc_html_e( 'Search' ); ?></label>
|
|
|
|
<input type="search" id="media-search-input" class="search" name="s" value="<?php _admin_search_query(); ?>"></div>
|
2014-08-26 17:58:15 +02:00
|
|
|
</div>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2014-08-26 17:58:15 +02:00
|
|
|
}
|
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2014-07-12 05:27:14 +02:00
|
|
|
public function get_columns() {
|
2017-12-01 00:11:00 +01:00
|
|
|
$posts_columns = array();
|
2010-10-25 04:57:43 +02:00
|
|
|
$posts_columns['cb'] = '<input type="checkbox" />';
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: Column name. */
|
2017-12-01 00:11:00 +01:00
|
|
|
$posts_columns['title'] = _x( 'File', 'column name' );
|
2010-10-25 04:57:43 +02:00
|
|
|
$posts_columns['author'] = __( 'Author' );
|
2012-09-22 00:52:54 +02:00
|
|
|
|
|
|
|
$taxonomies = get_taxonomies_for_attachments( 'objects' );
|
|
|
|
$taxonomies = wp_filter_object_list( $taxonomies, array( 'show_admin_column' => true ), 'and', 'name' );
|
|
|
|
|
2014-01-08 04:53:14 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the taxonomy columns for attachments in the Media list table.
|
2014-01-08 04:53:14 +01:00
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*
|
2018-03-22 21:27:32 +01:00
|
|
|
* @param string[] $taxonomies An array of registered taxonomy names to show for attachments.
|
|
|
|
* @param string $post_type The post type. Default 'attachment'.
|
2014-01-08 04:53:14 +01:00
|
|
|
*/
|
2012-09-22 00:52:54 +02:00
|
|
|
$taxonomies = apply_filters( 'manage_taxonomies_for_attachment_columns', $taxonomies, 'attachment' );
|
|
|
|
$taxonomies = array_filter( $taxonomies, 'taxonomy_exists' );
|
|
|
|
|
|
|
|
foreach ( $taxonomies as $taxonomy ) {
|
2015-09-22 08:06:25 +02:00
|
|
|
if ( 'category' === $taxonomy ) {
|
2012-09-22 00:52:54 +02:00
|
|
|
$column_key = 'categories';
|
2015-09-22 08:06:25 +02:00
|
|
|
} elseif ( 'post_tag' === $taxonomy ) {
|
2012-09-22 00:52:54 +02:00
|
|
|
$column_key = 'tags';
|
2015-09-22 08:06:25 +02:00
|
|
|
} else {
|
2012-09-22 00:52:54 +02:00
|
|
|
$column_key = 'taxonomy-' . $taxonomy;
|
2015-09-22 08:06:25 +02:00
|
|
|
}
|
2012-09-22 00:52:54 +02:00
|
|
|
$posts_columns[ $column_key ] = get_taxonomy( $taxonomy )->labels->name;
|
|
|
|
}
|
|
|
|
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: Column name. */
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $this->detached ) {
|
2012-11-17 07:56:05 +01:00
|
|
|
$posts_columns['parent'] = _x( 'Uploaded to', 'column name' );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( post_type_supports( 'attachment', 'comments' ) ) {
|
2015-06-28 17:44:25 +02:00
|
|
|
$posts_columns['comments'] = '<span class="vers comment-grey-bubble" title="' . esc_attr__( 'Comments' ) . '"><span class="screen-reader-text">' . __( 'Comments' ) . '</span></span>';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: Column name. */
|
2010-10-25 04:57:43 +02:00
|
|
|
$posts_columns['date'] = _x( 'Date', 'column name' );
|
2014-01-08 04:53:14 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the Media list table columns.
|
2014-01-08 04:53:14 +01:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2018-03-22 21:27:32 +01:00
|
|
|
* @param string[] $posts_columns An array of columns displayed in the Media list table.
|
|
|
|
* @param bool $detached Whether the list table contains media not attached
|
|
|
|
* to any posts. Default true.
|
2014-01-08 04:53:14 +01:00
|
|
|
*/
|
2015-05-29 22:17:26 +02:00
|
|
|
return apply_filters( 'manage_media_columns', $posts_columns, $this->detached );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
protected function get_sortable_columns() {
|
2010-10-25 04:57:43 +02:00
|
|
|
return array(
|
|
|
|
'title' => 'title',
|
|
|
|
'author' => 'author',
|
|
|
|
'parent' => 'parent',
|
|
|
|
'comments' => 'comment_count',
|
2010-11-26 03:03:02 +01:00
|
|
|
'date' => array( 'date', true ),
|
2010-10-25 04:57:43 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-05-28 23:41:30 +02:00
|
|
|
/**
|
2015-07-12 20:34:24 +02:00
|
|
|
* Handles the checkbox column output.
|
|
|
|
*
|
2015-06-13 17:57:27 +02:00
|
|
|
* @since 4.3.0
|
2015-05-28 23:41:30 +02:00
|
|
|
*
|
2015-07-12 20:34:24 +02:00
|
|
|
* @param WP_Post $post The current WP_Post object.
|
2015-05-28 23:41:30 +02:00
|
|
|
*/
|
2015-06-13 17:57:27 +02:00
|
|
|
public function column_cb( $post ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( current_user_can( 'edit_post', $post->ID ) ) {
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2017-12-01 00:11:00 +01:00
|
|
|
<label class="screen-reader-text" for="cb-select-<?php echo $post->ID; ?>">
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
<?php
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
printf( __( 'Select %s' ), _draft_or_post_title() );
|
|
|
|
?>
|
2017-12-01 00:11:00 +01:00
|
|
|
</label>
|
2015-06-13 17:57:27 +02:00
|
|
|
<input type="checkbox" name="media[]" id="cb-select-<?php echo $post->ID; ?>" value="<?php echo $post->ID; ?>" />
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-06-13 17:57:27 +02:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
/**
|
2015-07-12 20:34:24 +02:00
|
|
|
* Handles the title column output.
|
|
|
|
*
|
2015-06-13 17:57:27 +02:00
|
|
|
* @since 4.3.0
|
|
|
|
*
|
2015-07-12 20:34:24 +02:00
|
|
|
* @param WP_Post $post The current WP_Post object.
|
2015-06-13 17:57:27 +02:00
|
|
|
*/
|
|
|
|
public function column_title( $post ) {
|
|
|
|
list( $mime ) = explode( '/', $post->post_mime_type );
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$title = _draft_or_post_title();
|
|
|
|
$thumb = wp_get_attachment_image( $post->ID, array( 60, 60 ), true, array( 'alt' => '' ) );
|
2019-07-01 14:52:01 +02:00
|
|
|
$link_start = '';
|
|
|
|
$link_end = '';
|
2015-06-13 17:57:27 +02:00
|
|
|
|
2015-07-14 19:24:26 +02:00
|
|
|
if ( current_user_can( 'edit_post', $post->ID ) && ! $this->is_trash ) {
|
2016-01-17 15:46:29 +01:00
|
|
|
$link_start = sprintf(
|
|
|
|
'<a href="%s" aria-label="%s">',
|
|
|
|
get_edit_post_link( $post->ID ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( '“%s” (Edit)' ), $title ) )
|
|
|
|
);
|
2015-07-14 19:24:26 +02:00
|
|
|
$link_end = '</a>';
|
2015-06-13 17:57:27 +02:00
|
|
|
}
|
2015-05-29 04:41:25 +02:00
|
|
|
|
2015-07-14 19:46:24 +02:00
|
|
|
$class = $thumb ? ' class="has-media-icon"' : '';
|
2015-06-13 17:57:27 +02:00
|
|
|
?>
|
2015-07-14 19:46:24 +02:00
|
|
|
<strong<?php echo $class; ?>>
|
2016-01-17 15:46:29 +01:00
|
|
|
<?php
|
|
|
|
echo $link_start;
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $thumb ) :
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2015-07-14 19:24:26 +02:00
|
|
|
<span class="media-icon <?php echo sanitize_html_class( $mime . '-icon' ); ?>"><?php echo $thumb; ?></span>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2017-12-01 00:11:00 +01:00
|
|
|
endif;
|
2016-01-17 15:46:29 +01:00
|
|
|
echo $title . $link_end;
|
|
|
|
_media_states( $post );
|
|
|
|
?>
|
2015-07-14 19:24:26 +02:00
|
|
|
</strong>
|
2015-09-15 04:50:25 +02:00
|
|
|
<p class="filename">
|
|
|
|
<span class="screen-reader-text"><?php _e( 'File name:' ); ?> </span>
|
2015-09-17 04:30:26 +02:00
|
|
|
<?php
|
2015-09-15 04:50:25 +02:00
|
|
|
$file = get_attached_file( $post->ID );
|
2016-06-21 16:20:55 +02:00
|
|
|
echo esc_html( wp_basename( $file ) );
|
2015-09-15 04:50:25 +02:00
|
|
|
?>
|
|
|
|
</p>
|
2015-06-13 17:57:27 +02:00
|
|
|
<?php
|
2015-05-29 04:41:25 +02:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
/**
|
2015-07-12 20:34:24 +02:00
|
|
|
* Handles the author column output.
|
|
|
|
*
|
2015-06-13 17:57:27 +02:00
|
|
|
* @since 4.3.0
|
|
|
|
*
|
2015-07-12 20:34:24 +02:00
|
|
|
* @param WP_Post $post The current WP_Post object.
|
2015-06-13 17:57:27 +02:00
|
|
|
*/
|
|
|
|
public function column_author( $post ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
printf(
|
|
|
|
'<a href="%s">%s</a>',
|
|
|
|
esc_url( add_query_arg( array( 'author' => get_the_author_meta( 'ID' ) ), 'upload.php' ) ),
|
2015-06-13 17:57:27 +02:00
|
|
|
get_the_author()
|
|
|
|
);
|
2015-05-29 04:41:25 +02:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
/**
|
2015-07-12 20:34:24 +02:00
|
|
|
* Handles the description column output.
|
|
|
|
*
|
2015-06-13 17:57:27 +02:00
|
|
|
* @since 4.3.0
|
|
|
|
*
|
2015-07-12 20:34:24 +02:00
|
|
|
* @param WP_Post $post The current WP_Post object.
|
2015-06-13 17:57:27 +02:00
|
|
|
*/
|
|
|
|
public function column_desc( $post ) {
|
|
|
|
echo has_excerpt() ? $post->post_excerpt : '';
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
/**
|
2015-07-12 20:34:24 +02:00
|
|
|
* Handles the date column output.
|
|
|
|
*
|
2015-06-13 17:57:27 +02:00
|
|
|
* @since 4.3.0
|
|
|
|
*
|
2015-07-12 20:34:24 +02:00
|
|
|
* @param WP_Post $post The current WP_Post object.
|
2015-06-13 17:57:27 +02:00
|
|
|
*/
|
|
|
|
public function column_date( $post ) {
|
2015-09-22 08:06:25 +02:00
|
|
|
if ( '0000-00-00 00:00:00' === $post->post_date ) {
|
2015-06-13 17:57:27 +02:00
|
|
|
$h_time = __( 'Unpublished' );
|
|
|
|
} else {
|
2019-10-25 14:51:03 +02:00
|
|
|
$time = get_post_timestamp( $post );
|
|
|
|
$time_diff = time() - $time;
|
|
|
|
|
|
|
|
if ( $time && $time_diff > 0 && $time_diff < DAY_IN_SECONDS ) {
|
|
|
|
/* translators: %s: Human-readable time difference. */
|
|
|
|
$h_time = sprintf( __( '%s ago' ), human_time_diff( $time ) );
|
2015-06-13 17:57:27 +02:00
|
|
|
} else {
|
2019-10-25 14:51:03 +02:00
|
|
|
$h_time = get_the_time( __( 'Y/m/d' ), $post );
|
2015-06-13 17:57:27 +02:00
|
|
|
}
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
echo $h_time;
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
/**
|
2015-07-12 20:34:24 +02:00
|
|
|
* Handles the parent column output.
|
|
|
|
*
|
2015-06-13 17:57:27 +02:00
|
|
|
* @since 4.3.0
|
|
|
|
*
|
2015-07-12 20:34:24 +02:00
|
|
|
* @param WP_Post $post The current WP_Post object.
|
2015-06-13 17:57:27 +02:00
|
|
|
*/
|
|
|
|
public function column_parent( $post ) {
|
|
|
|
$user_can_edit = current_user_can( 'edit_post', $post->ID );
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
if ( $post->post_parent > 0 ) {
|
|
|
|
$parent = get_post( $post->post_parent );
|
|
|
|
} else {
|
|
|
|
$parent = false;
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
if ( $parent ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$title = _draft_or_post_title( $post->post_parent );
|
2015-06-13 17:57:27 +02:00
|
|
|
$parent_type = get_post_type_object( $parent->post_type );
|
2016-07-10 21:31:31 +02:00
|
|
|
|
2016-07-01 17:07:36 +02:00
|
|
|
if ( $parent_type && $parent_type->show_ui && current_user_can( 'edit_post', $post->post_parent ) ) {
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2016-07-01 17:07:36 +02:00
|
|
|
<strong><a href="<?php echo get_edit_post_link( $post->post_parent ); ?>">
|
2017-12-01 00:11:00 +01:00
|
|
|
<?php echo $title; ?></a></strong>
|
|
|
|
<?php
|
2016-07-04 21:34:28 +02:00
|
|
|
} elseif ( $parent_type && current_user_can( 'read_post', $post->post_parent ) ) {
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2017-12-01 00:11:00 +01:00
|
|
|
<strong><?php echo $title; ?></strong>
|
|
|
|
<?php
|
2015-06-13 17:57:27 +02:00
|
|
|
} else {
|
2016-07-01 17:07:36 +02:00
|
|
|
_e( '(Private post)' );
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $user_can_edit ) :
|
|
|
|
$detach_url = add_query_arg(
|
|
|
|
array(
|
|
|
|
'parent_post_id' => $post->post_parent,
|
|
|
|
'media[]' => $post->ID,
|
|
|
|
'_wpnonce' => wp_create_nonce( 'bulk-' . $this->_args['plural'] ),
|
2018-08-17 03:51:36 +02:00
|
|
|
),
|
|
|
|
'upload.php'
|
2017-12-01 00:11:00 +01:00
|
|
|
);
|
2016-01-17 15:46:29 +01:00
|
|
|
printf(
|
2016-07-01 17:07:36 +02:00
|
|
|
'<br /><a href="%s" class="hide-if-no-js detach-from-parent" aria-label="%s">%s</a>',
|
2016-01-17 15:46:29 +01:00
|
|
|
$detach_url,
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Title of the post the attachment is attached to. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'Detach from “%s”' ), $title ) ),
|
|
|
|
__( 'Detach' )
|
|
|
|
);
|
|
|
|
endif;
|
2015-06-13 17:57:27 +02:00
|
|
|
} else {
|
2017-12-01 00:11:00 +01:00
|
|
|
_e( '(Unattached)' );
|
|
|
|
?>
|
|
|
|
<?php
|
|
|
|
if ( $user_can_edit ) {
|
2016-01-17 15:46:29 +01:00
|
|
|
$title = _draft_or_post_title( $post->post_parent );
|
|
|
|
printf(
|
2016-07-10 21:31:31 +02:00
|
|
|
'<br /><a href="#the-list" onclick="findPosts.open( \'media[]\', \'%s\' ); return false;" class="hide-if-no-js aria-button-if-js" aria-label="%s">%s</a>',
|
2016-01-17 15:46:29 +01:00
|
|
|
$post->ID,
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'Attach “%s” to existing content' ), $title ) ),
|
|
|
|
__( 'Attach' )
|
|
|
|
);
|
|
|
|
}
|
2015-06-13 17:57:27 +02:00
|
|
|
}
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
/**
|
2015-07-12 20:34:24 +02:00
|
|
|
* Handles the comments column output.
|
|
|
|
*
|
2015-06-13 17:57:27 +02:00
|
|
|
* @since 4.3.0
|
|
|
|
*
|
2015-07-12 20:34:24 +02:00
|
|
|
* @param WP_Post $post The current WP_Post object.
|
2015-06-13 17:57:27 +02:00
|
|
|
*/
|
|
|
|
public function column_comments( $post ) {
|
|
|
|
echo '<div class="post-com-count-wrapper">';
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-10-16 20:23:27 +02:00
|
|
|
if ( isset( $this->comment_pending_count[ $post->ID ] ) ) {
|
|
|
|
$pending_comments = $this->comment_pending_count[ $post->ID ];
|
2015-09-14 21:25:25 +02:00
|
|
|
} else {
|
|
|
|
$pending_comments = get_pending_comments_num( $post->ID );
|
|
|
|
}
|
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
$this->comments_bubble( $post->ID, $pending_comments );
|
2013-08-27 22:49:10 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
echo '</div>';
|
|
|
|
}
|
2015-05-29 04:41:25 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
/**
|
2015-07-12 20:34:24 +02:00
|
|
|
* Handles output for the default column.
|
|
|
|
*
|
2015-06-13 17:57:27 +02:00
|
|
|
* @since 4.3.0
|
|
|
|
*
|
2015-07-12 20:34:24 +02:00
|
|
|
* @param WP_Post $post The current WP_Post object.
|
|
|
|
* @param string $column_name Current column name.
|
2015-06-13 17:57:27 +02:00
|
|
|
*/
|
|
|
|
public function column_default( $post, $column_name ) {
|
2015-09-22 08:06:25 +02:00
|
|
|
if ( 'categories' === $column_name ) {
|
2015-06-13 17:57:27 +02:00
|
|
|
$taxonomy = 'category';
|
2015-09-22 08:06:25 +02:00
|
|
|
} elseif ( 'tags' === $column_name ) {
|
2015-06-13 17:57:27 +02:00
|
|
|
$taxonomy = 'post_tag';
|
|
|
|
} elseif ( 0 === strpos( $column_name, 'taxonomy-' ) ) {
|
|
|
|
$taxonomy = substr( $column_name, 9 );
|
|
|
|
} else {
|
|
|
|
$taxonomy = false;
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
if ( $taxonomy ) {
|
|
|
|
$terms = get_the_terms( $post->ID, $taxonomy );
|
|
|
|
if ( is_array( $terms ) ) {
|
|
|
|
$out = array();
|
|
|
|
foreach ( $terms as $t ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$posts_in_term_qv = array();
|
2015-06-13 17:57:27 +02:00
|
|
|
$posts_in_term_qv['taxonomy'] = $taxonomy;
|
2017-12-01 00:11:00 +01:00
|
|
|
$posts_in_term_qv['term'] = $t->slug;
|
2015-06-13 17:57:27 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$out[] = sprintf(
|
|
|
|
'<a href="%s">%s</a>',
|
2015-06-13 17:57:27 +02:00
|
|
|
esc_url( add_query_arg( $posts_in_term_qv, 'upload.php' ) ),
|
|
|
|
esc_html( sanitize_term_field( 'name', $t->name, $t->term_id, $taxonomy, 'display' ) )
|
|
|
|
);
|
2012-09-22 00:52:54 +02:00
|
|
|
}
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: Used between list items, there is a space after the comma. */
|
2015-06-13 17:57:27 +02:00
|
|
|
echo join( __( ', ' ), $out );
|
|
|
|
} else {
|
2015-06-25 02:16:27 +02:00
|
|
|
echo '<span aria-hidden="true">—</span><span class="screen-reader-text">' . get_taxonomy( $taxonomy )->labels->no_terms . '</span>';
|
2015-06-13 17:57:27 +02:00
|
|
|
}
|
2015-05-29 04:41:25 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
return;
|
2015-05-29 04:41:25 +02:00
|
|
|
}
|
2015-05-29 22:17:26 +02:00
|
|
|
|
2015-06-13 17:57:27 +02:00
|
|
|
/**
|
|
|
|
* Fires for each custom column in the Media list table.
|
|
|
|
*
|
|
|
|
* Custom columns are registered using the {@see 'manage_media_columns'} filter.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $column_name Name of the custom column.
|
|
|
|
* @param int $post_id Attachment ID.
|
|
|
|
*/
|
|
|
|
do_action( 'manage_media_custom_column', $column_name, $post->ID );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
2015-06-13 17:57:27 +02:00
|
|
|
|
|
|
|
/**
|
2019-08-04 14:28:56 +02:00
|
|
|
* @global WP_Post $post Global post object.
|
2015-06-13 17:57:27 +02:00
|
|
|
*/
|
|
|
|
public function display_rows() {
|
2015-09-14 21:25:25 +02:00
|
|
|
global $post, $wp_query;
|
|
|
|
|
|
|
|
$post_ids = wp_list_pluck( $wp_query->posts, 'ID' );
|
|
|
|
reset( $wp_query->posts );
|
|
|
|
|
2015-10-16 20:23:27 +02:00
|
|
|
$this->comment_pending_count = get_pending_comments_num( $post_ids );
|
2015-06-13 17:57:27 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
add_filter( 'the_title', 'esc_html' );
|
2015-06-13 17:57:27 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
2015-06-13 17:57:27 +02:00
|
|
|
if (
|
|
|
|
( $this->is_trash && $post->post_status != 'trash' )
|
2015-09-22 08:06:25 +02:00
|
|
|
|| ( ! $this->is_trash && $post->post_status === 'trash' )
|
2015-06-13 17:57:27 +02:00
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$post_owner = ( get_current_user_id() == $post->post_author ) ? 'self' : 'other';
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2015-06-13 17:57:27 +02:00
|
|
|
<tr id="post-<?php echo $post->ID; ?>" class="<?php echo trim( ' author-' . $post_owner . ' status-' . $post->post_status ); ?>">
|
|
|
|
<?php $this->single_row_columns( $post ); ?>
|
|
|
|
</tr>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2015-06-13 17:57:27 +02:00
|
|
|
endwhile;
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-29 04:41:25 +02:00
|
|
|
/**
|
2015-07-12 20:34:24 +02:00
|
|
|
* Gets the name of the default primary column.
|
2015-05-29 04:41:25 +02:00
|
|
|
*
|
|
|
|
* @since 4.3.0
|
|
|
|
*
|
2015-05-31 03:32:26 +02:00
|
|
|
* @return string Name of the default primary column, in this case, 'title'.
|
2015-05-29 04:41:25 +02:00
|
|
|
*/
|
|
|
|
protected function get_default_primary_column_name() {
|
|
|
|
return 'title';
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:33:23 +01:00
|
|
|
/**
|
|
|
|
* @param WP_Post $post
|
|
|
|
* @param string $att_title
|
2015-05-29 22:17:26 +02:00
|
|
|
*
|
|
|
|
* @return array
|
2014-12-01 01:33:23 +01:00
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
private function _get_row_actions( $post, $att_title ) {
|
2010-11-07 00:00:17 +01:00
|
|
|
$actions = array();
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2010-11-07 00:00:17 +01:00
|
|
|
if ( $this->detached ) {
|
2016-01-17 15:46:29 +01:00
|
|
|
if ( current_user_can( 'edit_post', $post->ID ) ) {
|
|
|
|
$actions['edit'] = sprintf(
|
|
|
|
'<a href="%s" aria-label="%s">%s</a>',
|
|
|
|
get_edit_post_link( $post->ID ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'Edit “%s”' ), $att_title ) ),
|
|
|
|
__( 'Edit' )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ( current_user_can( 'delete_post', $post->ID ) ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
if ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) {
|
2016-01-17 15:46:29 +01:00
|
|
|
$actions['trash'] = sprintf(
|
2016-07-10 21:31:31 +02:00
|
|
|
'<a href="%s" class="submitdelete aria-button-if-js" aria-label="%s">%s</a>',
|
2016-01-17 15:46:29 +01:00
|
|
|
wp_nonce_url( "post.php?action=trash&post=$post->ID", 'trash-post_' . $post->ID ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'Move “%s” to the Trash' ), $att_title ) ),
|
|
|
|
_x( 'Trash', 'verb' )
|
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
} else {
|
2017-12-01 00:11:00 +01:00
|
|
|
$delete_ays = ! MEDIA_TRASH ? " onclick='return showNotice.warn();'" : '';
|
2016-01-17 15:46:29 +01:00
|
|
|
$actions['delete'] = sprintf(
|
2016-07-10 21:31:31 +02:00
|
|
|
'<a href="%s" class="submitdelete aria-button-if-js"%s aria-label="%s">%s</a>',
|
2016-01-17 15:46:29 +01:00
|
|
|
wp_nonce_url( "post.php?action=delete&post=$post->ID", 'delete-post_' . $post->ID ),
|
|
|
|
$delete_ays,
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'Delete “%s” permanently' ), $att_title ) ),
|
|
|
|
__( 'Delete Permanently' )
|
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
2016-01-17 15:46:29 +01:00
|
|
|
}
|
|
|
|
$actions['view'] = sprintf(
|
2017-05-23 19:58:43 +02:00
|
|
|
'<a href="%s" aria-label="%s" rel="bookmark">%s</a>',
|
2016-01-17 15:46:29 +01:00
|
|
|
get_permalink( $post->ID ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'View “%s”' ), $att_title ) ),
|
|
|
|
__( 'View' )
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( current_user_can( 'edit_post', $post->ID ) ) {
|
|
|
|
$actions['attach'] = sprintf(
|
2016-07-10 21:31:31 +02:00
|
|
|
'<a href="#the-list" onclick="findPosts.open( \'media[]\', \'%s\' ); return false;" class="hide-if-no-js aria-button-if-js" aria-label="%s">%s</a>',
|
2016-01-17 15:46:29 +01:00
|
|
|
$post->ID,
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'Attach “%s” to existing content' ), $att_title ) ),
|
|
|
|
__( 'Attach' )
|
|
|
|
);
|
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
|
|
|
if ( current_user_can( 'edit_post', $post->ID ) && ! $this->is_trash ) {
|
2016-01-17 15:46:29 +01:00
|
|
|
$actions['edit'] = sprintf(
|
|
|
|
'<a href="%s" aria-label="%s">%s</a>',
|
|
|
|
get_edit_post_link( $post->ID ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'Edit “%s”' ), $att_title ) ),
|
|
|
|
__( 'Edit' )
|
|
|
|
);
|
|
|
|
}
|
2010-11-07 00:00:17 +01:00
|
|
|
if ( current_user_can( 'delete_post', $post->ID ) ) {
|
2016-01-17 15:46:29 +01:00
|
|
|
if ( $this->is_trash ) {
|
|
|
|
$actions['untrash'] = sprintf(
|
2016-07-10 21:31:31 +02:00
|
|
|
'<a href="%s" class="submitdelete aria-button-if-js" aria-label="%s">%s</a>',
|
2016-01-17 15:46:29 +01:00
|
|
|
wp_nonce_url( "post.php?action=untrash&post=$post->ID", 'untrash-post_' . $post->ID ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'Restore “%s” from the Trash' ), $att_title ) ),
|
|
|
|
__( 'Restore' )
|
|
|
|
);
|
|
|
|
} elseif ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) {
|
|
|
|
$actions['trash'] = sprintf(
|
2016-07-10 21:31:31 +02:00
|
|
|
'<a href="%s" class="submitdelete aria-button-if-js" aria-label="%s">%s</a>',
|
2016-01-17 15:46:29 +01:00
|
|
|
wp_nonce_url( "post.php?action=trash&post=$post->ID", 'trash-post_' . $post->ID ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'Move “%s” to the Trash' ), $att_title ) ),
|
|
|
|
_x( 'Trash', 'verb' )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ( $this->is_trash || ! EMPTY_TRASH_DAYS || ! MEDIA_TRASH ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$delete_ays = ( ! $this->is_trash && ! MEDIA_TRASH ) ? " onclick='return showNotice.warn();'" : '';
|
2016-01-17 15:46:29 +01:00
|
|
|
$actions['delete'] = sprintf(
|
2016-07-10 21:31:31 +02:00
|
|
|
'<a href="%s" class="submitdelete aria-button-if-js"%s aria-label="%s">%s</a>',
|
2016-01-17 15:46:29 +01:00
|
|
|
wp_nonce_url( "post.php?action=delete&post=$post->ID", 'delete-post_' . $post->ID ),
|
|
|
|
$delete_ays,
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'Delete “%s” permanently' ), $att_title ) ),
|
|
|
|
__( 'Delete Permanently' )
|
|
|
|
);
|
2010-11-07 00:00:17 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-17 15:46:29 +01:00
|
|
|
if ( ! $this->is_trash ) {
|
|
|
|
$actions['view'] = sprintf(
|
2017-05-23 19:58:43 +02:00
|
|
|
'<a href="%s" aria-label="%s" rel="bookmark">%s</a>',
|
2016-01-17 15:46:29 +01:00
|
|
|
get_permalink( $post->ID ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Attachment title. */
|
2016-01-17 15:46:29 +01:00
|
|
|
esc_attr( sprintf( __( 'View “%s”' ), $att_title ) ),
|
|
|
|
__( 'View' )
|
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
}
|
2010-11-07 00:00:17 +01:00
|
|
|
|
2014-01-08 04:53:14 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the action links for each attachment in the Media list table.
|
2014-01-08 04:53:14 +01:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*
|
2018-03-22 21:27:32 +01:00
|
|
|
* @param string[] $actions An array of action links for each attachment.
|
|
|
|
* Default 'Edit', 'Delete Permanently', 'View'.
|
|
|
|
* @param WP_Post $post WP_Post object for the current attachment.
|
|
|
|
* @param bool $detached Whether the list table contains media not attached
|
|
|
|
* to any posts. Default true.
|
2014-01-08 04:53:14 +01:00
|
|
|
*/
|
2015-05-29 22:17:26 +02:00
|
|
|
return apply_filters( 'media_row_actions', $actions, $post, $this->detached );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
2015-06-16 21:47:24 +02:00
|
|
|
|
|
|
|
/**
|
2015-07-12 20:34:24 +02:00
|
|
|
* Generates and displays row action links.
|
2015-06-16 21:47:24 +02:00
|
|
|
*
|
|
|
|
* @since 4.3.0
|
|
|
|
*
|
2015-06-16 23:33:25 +02:00
|
|
|
* @param object $post Attachment being acted upon.
|
2015-06-16 21:47:24 +02:00
|
|
|
* @param string $column_name Current column name.
|
|
|
|
* @param string $primary Primary column name.
|
2015-06-16 23:33:25 +02:00
|
|
|
* @return string Row actions output for media attachments.
|
2015-06-16 21:47:24 +02:00
|
|
|
*/
|
2015-06-16 23:33:25 +02:00
|
|
|
protected function handle_row_actions( $post, $column_name, $primary ) {
|
2015-07-14 19:47:24 +02:00
|
|
|
if ( $primary !== $column_name ) {
|
|
|
|
return '';
|
2015-06-16 21:47:24 +02:00
|
|
|
}
|
2015-07-14 19:47:24 +02:00
|
|
|
|
|
|
|
$att_title = _draft_or_post_title();
|
|
|
|
return $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
|
2015-06-16 21:47:24 +02:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|