Media list table: Restore row actions.

see #29881, #32657.


git-svn-id: https://develop.svn.wordpress.org/trunk@32798 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Helen Hou-Sandi 2015-06-16 19:46:27 +00:00
parent a4765f9e1b
commit d878ce73f5

View File

@ -620,4 +620,21 @@ class WP_Media_List_Table extends WP_List_Table {
*/
return apply_filters( 'media_row_actions', $actions, $post, $this->detached );
}
/**
* Generate and display row actions links.
*
* @since 4.3.0
* @access protected
*
* @param object $link Link being acted upon.
* @param string $column_name Current column name.
* @param string $primary Primary column name.
* @return string Row action output for links.
*/
protected function handle_row_actions( $link, $column_name, $primary ) {
if( $primary === $column_name ) {
return $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
}
}
}