2010-10-25 04:57:43 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2010-10-25 06:04:18 +02:00
|
|
|
* Media Library List Table class.
|
2010-10-25 04:57:43 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-10-25 06:04:18 +02:00
|
|
|
* @subpackage List_Table
|
|
|
|
* @since 3.1.0
|
2011-01-16 22:47:24 +01:00
|
|
|
* @access private
|
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 {
|
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
|
2014-08-10 04:22:16 +02:00
|
|
|
* @access public
|
2014-08-10 04:18:17 +02:00
|
|
|
*
|
|
|
|
* @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' ),
|
|
|
|
'grid' => __( 'Grid View' )
|
|
|
|
);
|
|
|
|
|
2011-04-29 22:05:12 +02:00
|
|
|
parent::__construct( array(
|
2012-09-19 14:43:31 +02:00
|
|
|
'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() {
|
2010-12-16 10:18:28 +01:00
|
|
|
return current_user_can('upload_files');
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-28 23:41:30 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @global WP_Query $wp_query
|
|
|
|
* @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
|
|
|
|
2014-09-03 08:47:16 +02:00
|
|
|
$this->is_trash = isset( $_REQUEST['attachment-filter'] ) && 'trash' == $_REQUEST['attachment-filter'];
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2014-06-06 00:01:18 +02:00
|
|
|
$mode = empty( $_REQUEST['mode'] ) ? 'list' : $_REQUEST['mode'];
|
|
|
|
|
2010-10-25 04:57:43 +02: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'],
|
|
|
|
) );
|
|
|
|
}
|
|
|
|
|
2015-05-28 23:41:30 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @global wpdb $wpdb
|
|
|
|
* @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() {
|
2010-11-06 23:47:12 +01:00
|
|
|
global $wpdb, $post_mime_types, $avail_post_mime_types;
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
$type_links = array();
|
|
|
|
$_num_posts = (array) wp_count_attachments();
|
|
|
|
$_total_posts = array_sum($_num_posts) - $_num_posts['trash'];
|
2013-05-07 18:35:03 +02:00
|
|
|
$total_orphans = $wpdb->get_var( "SELECT COUNT( * ) FROM $wpdb->posts WHERE post_type = 'attachment' AND post_status != 'trash' AND post_parent < 1" );
|
2010-10-25 04:57:43 +02:00
|
|
|
$matches = wp_match_mime_types(array_keys($post_mime_types), array_keys($_num_posts));
|
2015-05-19 22:50:27 +02:00
|
|
|
$num_posts = array();
|
|
|
|
foreach ( $matches as $type => $reals ) {
|
|
|
|
foreach ( $reals as $real ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
$num_posts[$type] = ( isset( $num_posts[$type] ) ) ? $num_posts[$type] + $_num_posts[$real] : $_num_posts[$real];
|
2015-05-19 22:50:27 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-26 17:58:15 +02:00
|
|
|
$selected = empty( $_GET['attachment-filter'] ) ? ' selected="selected"' : '';
|
|
|
|
$type_links['all'] = "<option value=''$selected>" . sprintf( _nx( 'All (%s)', 'All (%s)', $_total_posts, 'uploaded files' ), number_format_i18n( $_total_posts ) ) . '</option>';
|
2010-10-25 04:57:43 +02:00
|
|
|
foreach ( $post_mime_types as $mime_type => $label ) {
|
|
|
|
if ( !wp_match_mime_types($mime_type, $avail_post_mime_types) )
|
|
|
|
continue;
|
|
|
|
|
2014-08-26 17:58:15 +02:00
|
|
|
$selected = '';
|
|
|
|
if ( !empty( $_GET['attachment-filter'] ) && strpos( $_GET['attachment-filter'], 'post_mime_type:' ) === 0 && wp_match_mime_types( $mime_type, str_replace( 'post_mime_type:', '', $_GET['attachment-filter'] ) ) )
|
|
|
|
$selected = ' selected="selected"';
|
2010-10-25 04:57:43 +02:00
|
|
|
if ( !empty( $num_posts[$mime_type] ) )
|
2015-01-04 03:32:22 +01:00
|
|
|
$type_links[$mime_type] = '<option value="post_mime_type:' . esc_attr( $mime_type ) . '"' . $selected . '>' . sprintf( translate_nooped_plural( $label[2], $num_posts[$mime_type] ), number_format_i18n( $num_posts[$mime_type] )) . '</option>';
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
2014-08-26 17:58:15 +02:00
|
|
|
$type_links['detached'] = '<option value="detached"' . ( $this->detached ? ' selected="selected"' : '' ) . '>' . sprintf( _nx( 'Unattached (%s)', 'Unattached (%s)', $total_orphans, 'detached files' ), number_format_i18n( $total_orphans ) ) . '</option>';
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
if ( !empty($_num_posts['trash']) )
|
2014-08-26 17:58:15 +02:00
|
|
|
$type_links['trash'] = '<option value="trash"' . ( (isset($_GET['attachment-filter']) && $_GET['attachment-filter'] == 'trash' ) ? ' selected="selected"' : '') . '>' . sprintf( _nx( 'Trash (%s)', 'Trash (%s)', $_num_posts['trash'], 'uploaded files' ), number_format_i18n( $_num_posts['trash'] ) ) . '</option>';
|
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' );
|
|
|
|
$actions['delete'] = __( 'Delete Permanently' );
|
|
|
|
} else {
|
|
|
|
$actions['trash'] = __( 'Trash' );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$actions['delete'] = __( 'Delete Permanently' );
|
|
|
|
}
|
|
|
|
|
2010-11-06 23:47:12 +01:00
|
|
|
if ( $this->detached )
|
2015-08-30 05:10:21 +02:00
|
|
|
$actions['attach'] = __( 'Attach' );
|
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;
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
?>
|
2014-08-26 17:58:15 +02:00
|
|
|
<div class="actions">
|
2010-10-25 04:57:43 +02:00
|
|
|
<?php
|
2014-09-03 08:47:16 +02:00
|
|
|
if ( ! is_singular() ) {
|
|
|
|
if ( ! $this->is_trash ) {
|
|
|
|
$this->months_dropdown( 'attachment' );
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2014-01-08 04:53:14 +01:00
|
|
|
/** This action is documented in wp-admin/includes/class-wp-posts-list-table.php */
|
2015-08-19 08:23:25 +02:00
|
|
|
do_action( 'restrict_manage_posts', $this->screen->post_type );
|
|
|
|
|
2014-06-30 03:10:15 +02:00
|
|
|
submit_button( __( 'Filter' ), 'button', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2014-08-20 19:09:15 +02:00
|
|
|
if ( $this->is_trash && current_user_can( 'edit_others_posts' ) ) {
|
2012-09-21 21:34:23 +02:00
|
|
|
submit_button( __( 'Empty Trash' ), 'apply', 'delete_all', false );
|
2010-10-28 23:56:43 +02:00
|
|
|
} ?>
|
2010-10-25 04:57:43 +02:00
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
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() {
|
2010-10-25 04:57:43 +02:00
|
|
|
if ( isset( $_REQUEST['found_post_id'] ) && isset( $_REQUEST['media'] ) )
|
|
|
|
return 'attach';
|
|
|
|
|
2015-03-05 06:35:28 +01:00
|
|
|
if ( isset( $_REQUEST['parent_post_id'] ) && isset( $_REQUEST['media'] ) )
|
|
|
|
return 'detach';
|
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) )
|
|
|
|
return 'delete_all';
|
|
|
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
* @access public
|
|
|
|
*/
|
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() {
|
2010-10-25 04:57:43 +02:00
|
|
|
_e( 'No media attachments found.' );
|
|
|
|
}
|
|
|
|
|
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
|
|
|
*
|
|
|
|
* @global string $mode
|
2014-08-26 17:58:15 +02:00
|
|
|
*/
|
|
|
|
public function views() {
|
|
|
|
global $mode;
|
|
|
|
|
|
|
|
$views = $this->get_views();
|
|
|
|
?>
|
|
|
|
<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
|
|
|
|
|
|
|
<?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.
|
|
|
|
if ( ! empty( $views ) ) {
|
|
|
|
echo '<ul class="filter-links">';
|
|
|
|
foreach ( $views as $class => $view ) {
|
|
|
|
echo "<li class='$class'>$view</li>";
|
|
|
|
}
|
|
|
|
echo '</ul>';
|
2014-08-26 17:58:15 +02:00
|
|
|
}
|
|
|
|
?>
|
2014-12-11 05:12:23 +01:00
|
|
|
</div>
|
2014-08-26 17:58:15 +02:00
|
|
|
|
|
|
|
<div class="search-form">
|
|
|
|
<label for="media-search-input" class="screen-reader-text"><?php esc_html_e( 'Search Media' ); ?></label>
|
2014-09-01 21:54:16 +02:00
|
|
|
<input type="search" placeholder="<?php esc_attr_e( 'Search' ) ?>" id="media-search-input" class="search" name="s" value="<?php _admin_search_query(); ?>"></div>
|
2014-08-26 17:58:15 +02:00
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2014-07-12 05:27:14 +02:00
|
|
|
public function get_columns() {
|
2010-10-25 04:57:43 +02:00
|
|
|
$posts_columns = array();
|
|
|
|
$posts_columns['cb'] = '<input type="checkbox" />';
|
|
|
|
/* translators: column name */
|
|
|
|
$posts_columns['title'] = _x( 'File', 'column name' );
|
|
|
|
$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
|
|
|
/**
|
|
|
|
* Filter the taxonomy columns for attachments in the Media list table.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*
|
|
|
|
* @param array $taxonomies An array of registered taxonomies to show for attachments.
|
|
|
|
* @param string $post_type The post type. Default 'attachment'.
|
|
|
|
*/
|
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 ) {
|
|
|
|
if ( 'category' == $taxonomy )
|
|
|
|
$column_key = 'categories';
|
|
|
|
elseif ( 'post_tag' == $taxonomy )
|
|
|
|
$column_key = 'tags';
|
|
|
|
else
|
|
|
|
$column_key = 'taxonomy-' . $taxonomy;
|
|
|
|
|
|
|
|
$posts_columns[ $column_key ] = get_taxonomy( $taxonomy )->labels->name;
|
|
|
|
}
|
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
/* translators: column name */
|
2010-11-06 23:47:12 +01:00
|
|
|
if ( !$this->detached ) {
|
2012-11-17 07:56:05 +01:00
|
|
|
$posts_columns['parent'] = _x( 'Uploaded to', 'column name' );
|
2011-10-10 21:56:35 +02: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>';
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
/* translators: column name */
|
|
|
|
$posts_columns['date'] = _x( 'Date', 'column name' );
|
2014-01-08 04:53:14 +01:00
|
|
|
/**
|
|
|
|
* Filter the Media list table columns.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param array $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.
|
|
|
|
*/
|
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-07-12 20:34:24 +02:00
|
|
|
* @access public
|
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 ) {
|
|
|
|
if ( current_user_can( 'edit_post', $post->ID ) ) { ?>
|
|
|
|
<label class="screen-reader-text" for="cb-select-<?php echo $post->ID; ?>"><?php
|
|
|
|
echo sprintf( __( 'Select %s' ), _draft_or_post_title() );
|
|
|
|
?></label>
|
|
|
|
<input type="checkbox" name="media[]" id="cb-select-<?php echo $post->ID; ?>" value="<?php echo $post->ID; ?>" />
|
|
|
|
<?php }
|
|
|
|
}
|
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
|
|
|
* @access public
|
2015-06-13 17:57:27 +02:00
|
|
|
*
|
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
|
|
|
|
2015-07-14 19:24:26 +02:00
|
|
|
$title = _draft_or_post_title();
|
|
|
|
$thumb = wp_get_attachment_image( $post->ID, array( 60, 60 ), true, array( 'alt' => '' ) );
|
|
|
|
$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 ) {
|
|
|
|
$link_start = '<a href="' . get_edit_post_link( $post->ID ) . '">';
|
|
|
|
$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; ?>>
|
2015-07-14 19:24:26 +02:00
|
|
|
<?php echo $link_start; ?>
|
|
|
|
<?php if ( $thumb ) : ?>
|
|
|
|
<span class="media-icon <?php echo sanitize_html_class( $mime . '-icon' ); ?>"><?php echo $thumb; ?></span>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<span aria-hidden="true"><?php echo $title; ?></span>
|
|
|
|
<span class="screen-reader-text"><?php printf( __( 'Edit “%s”' ), $title ); ?></span>
|
|
|
|
<?php echo $link_end; ?>
|
|
|
|
<?php _media_states( $post ); ?>
|
|
|
|
</strong>
|
|
|
|
<p class="filename"><span class="screen-reader-text"><?php _e( 'File name:' ); ?> </span><?php echo wp_basename( $post->guid ); ?></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
|
|
|
* @access public
|
2015-06-13 17:57:27 +02:00
|
|
|
*
|
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 ) {
|
|
|
|
printf( '<a href="%s">%s</a>',
|
|
|
|
esc_url( add_query_arg( array( 'author' => get_the_author_meta('ID') ), 'upload.php' ) ),
|
|
|
|
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
|
|
|
* @access public
|
2015-06-13 17:57:27 +02:00
|
|
|
*
|
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
|
|
|
* @access public
|
2015-06-13 17:57:27 +02:00
|
|
|
*
|
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 ) {
|
|
|
|
if ( '0000-00-00 00:00:00' == $post->post_date ) {
|
|
|
|
$h_time = __( 'Unpublished' );
|
|
|
|
} else {
|
|
|
|
$m_time = $post->post_date;
|
|
|
|
$time = get_post_time( 'G', true, $post, false );
|
|
|
|
if ( ( abs( $t_diff = time() - $time ) ) < DAY_IN_SECONDS ) {
|
|
|
|
if ( $t_diff < 0 ) {
|
|
|
|
$h_time = sprintf( __( '%s from now' ), human_time_diff( $time ) );
|
|
|
|
} else {
|
|
|
|
$h_time = sprintf( __( '%s ago' ), human_time_diff( $time ) );
|
2015-05-29 04:41:25 +02:00
|
|
|
}
|
2015-06-13 17:57:27 +02:00
|
|
|
} else {
|
|
|
|
$h_time = mysql2date( __( 'Y/m/d' ), $m_time );
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
* @access public
|
2015-06-13 17:57:27 +02:00
|
|
|
*
|
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 ) {
|
|
|
|
$title = _draft_or_post_title( $post->post_parent );
|
|
|
|
$parent_type = get_post_type_object( $parent->post_type );
|
|
|
|
?>
|
|
|
|
<strong>
|
|
|
|
<?php if ( $parent_type && $parent_type->show_ui && current_user_can( 'edit_post', $post->post_parent ) ) { ?>
|
|
|
|
<a href="<?php echo get_edit_post_link( $post->post_parent ); ?>">
|
|
|
|
<?php echo $title ?></a><?php
|
|
|
|
} else {
|
|
|
|
echo $title;
|
|
|
|
} ?></strong>,
|
|
|
|
<?php echo get_the_time( __( 'Y/m/d' ) ); ?><br />
|
|
|
|
<?php
|
|
|
|
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'] )
|
|
|
|
), 'upload.php' ); ?>
|
|
|
|
<a class="hide-if-no-js detach-from-parent" href="<?php echo $detach_url ?>"><?php _e( 'Detach' ); ?></a>
|
|
|
|
<?php endif;
|
|
|
|
} else {
|
|
|
|
_e( '(Unattached)' ); ?><br />
|
|
|
|
<?php if ( $user_can_edit ) { ?>
|
|
|
|
<a class="hide-if-no-js"
|
|
|
|
onclick="findPosts.open( 'media[]','<?php echo $post->ID ?>' ); return false;"
|
|
|
|
href="#the-list">
|
|
|
|
<?php _e( 'Attach' ); ?></a>
|
|
|
|
<?php }
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
* @access public
|
2015-06-13 17:57:27 +02:00
|
|
|
*
|
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-06-13 17:57:27 +02:00
|
|
|
$pending_comments = get_pending_comments_num( $post->ID );
|
|
|
|
$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
|
|
|
* @access public
|
2015-06-13 17:57:27 +02:00
|
|
|
*
|
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 ) {
|
|
|
|
if ( 'categories' == $column_name ) {
|
|
|
|
$taxonomy = 'category';
|
|
|
|
} elseif ( 'tags' == $column_name ) {
|
|
|
|
$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 ) {
|
|
|
|
$posts_in_term_qv = array();
|
|
|
|
$posts_in_term_qv['taxonomy'] = $taxonomy;
|
|
|
|
$posts_in_term_qv['term'] = $t->slug;
|
|
|
|
|
|
|
|
$out[] = sprintf( '<a href="%s">%s</a>',
|
|
|
|
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
|
|
|
}
|
2015-06-13 17:57:27 +02:00
|
|
|
/* translators: used between list items, there is a space after the comma */
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @global WP_Post $post
|
|
|
|
*/
|
|
|
|
public function display_rows() {
|
|
|
|
global $post;
|
|
|
|
|
|
|
|
add_filter( 'the_title','esc_html' );
|
|
|
|
|
|
|
|
while ( have_posts() ) : the_post();
|
|
|
|
if (
|
|
|
|
( $this->is_trash && $post->post_status != 'trash' )
|
|
|
|
|| ( ! $this->is_trash && $post->post_status == 'trash' )
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$post_owner = ( get_current_user_id() == $post->post_author ) ? 'self' : 'other';
|
|
|
|
?>
|
|
|
|
<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>
|
|
|
|
<?php
|
|
|
|
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
|
|
|
|
* @access protected
|
|
|
|
*
|
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 ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
if ( current_user_can( 'edit_post', $post->ID ) )
|
2015-01-16 23:51:21 +01:00
|
|
|
$actions['edit'] = '<a href="' . get_edit_post_link( $post->ID ) . '">' . __( 'Edit' ) . '</a>';
|
2010-10-25 04:57:43 +02:00
|
|
|
if ( current_user_can( 'delete_post', $post->ID ) )
|
|
|
|
if ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) {
|
2012-08-14 20:39:15 +02:00
|
|
|
$actions['trash'] = "<a class='submitdelete' href='" . wp_nonce_url( "post.php?action=trash&post=$post->ID", 'trash-post_' . $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
|
2010-10-25 04:57:43 +02:00
|
|
|
} else {
|
|
|
|
$delete_ays = !MEDIA_TRASH ? " onclick='return showNotice.warn();'" : '';
|
2012-08-14 20:39:15 +02:00
|
|
|
$actions['delete'] = "<a class='submitdelete'$delete_ays href='" . wp_nonce_url( "post.php?action=delete&post=$post->ID", 'delete-post_' . $post->ID ) . "'>" . __( 'Delete Permanently' ) . "</a>";
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
$actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View “%s”' ), $att_title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
|
|
|
|
if ( current_user_can( 'edit_post', $post->ID ) )
|
|
|
|
$actions['attach'] = '<a href="#the-list" onclick="findPosts.open( \'media[]\',\''.$post->ID.'\' );return false;" class="hide-if-no-js">'.__( 'Attach' ).'</a>';
|
2010-11-07 00:00:17 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if ( current_user_can( 'edit_post', $post->ID ) && !$this->is_trash )
|
2015-01-16 23:51:21 +01:00
|
|
|
$actions['edit'] = '<a href="' . get_edit_post_link( $post->ID ) . '">' . __( 'Edit' ) . '</a>';
|
2010-11-07 00:00:17 +01:00
|
|
|
if ( current_user_can( 'delete_post', $post->ID ) ) {
|
|
|
|
if ( $this->is_trash )
|
2012-08-14 20:39:15 +02:00
|
|
|
$actions['untrash'] = "<a class='submitdelete' href='" . wp_nonce_url( "post.php?action=untrash&post=$post->ID", 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore' ) . "</a>";
|
2010-11-07 00:00:17 +01:00
|
|
|
elseif ( EMPTY_TRASH_DAYS && MEDIA_TRASH )
|
2012-08-14 20:39:15 +02:00
|
|
|
$actions['trash'] = "<a class='submitdelete' href='" . wp_nonce_url( "post.php?action=trash&post=$post->ID", 'trash-post_' . $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
|
2010-11-07 00:00:17 +01:00
|
|
|
if ( $this->is_trash || !EMPTY_TRASH_DAYS || !MEDIA_TRASH ) {
|
|
|
|
$delete_ays = ( !$this->is_trash && !MEDIA_TRASH ) ? " onclick='return showNotice.warn();'" : '';
|
2012-08-14 20:39:15 +02:00
|
|
|
$actions['delete'] = "<a class='submitdelete'$delete_ays href='" . wp_nonce_url( "post.php?action=delete&post=$post->ID", 'delete-post_' . $post->ID ) . "'>" . __( 'Delete Permanently' ) . "</a>";
|
2010-11-07 00:00:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( !$this->is_trash ) {
|
|
|
|
$title =_draft_or_post_title( $post->post_parent );
|
|
|
|
$actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View “%s”' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
}
|
2010-11-07 00:00:17 +01:00
|
|
|
|
2014-01-08 04:53:14 +01:00
|
|
|
/**
|
|
|
|
* Filter the action links for each attachment in the Media list table.
|
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*
|
|
|
|
* @param array $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.
|
|
|
|
*/
|
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
|
|
|
|
* @access protected
|
|
|
|
*
|
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
|
|
|
}
|