Make WordPress Core


Ignore:
Timestamp:
06/28/2022 08:45:28 PM (23 months ago)
Author:
audrasjb
Message:

Help/About: Add help tab info for available row actions in the Media Library.

This changeset fills the existing help tab with more detailed information about available row actions in the Media Library, when using the List view.

Props kebbet, audrasjb, costdev, SergeyBiryukov, mukesh27.
Fixes #55800.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/upload.php

    r51549 r53586  
    240240        'title'   => __( 'Available Actions' ),
    241241        'content' =>
    242                 '<p>' . __( 'Hovering over a row reveals action links: Edit, Delete Permanently, and View. Clicking Edit or on the media file&#8217;s name displays a simple screen to edit that individual file&#8217;s metadata. Clicking Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached). View will take you to the display page for that file.' ) . '</p>',
     242                '<p>' . __( 'Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:' ) . '</p>' .
     243                '<ul>' .
     244                    '<li>' . __( '<strong>Edit</strong> takes you to simple screen to edit that individual file&#8217;s metadata. You can also reach that screen by clicking on the media file name or thumbnail.' ) . '</li>' .
     245                    '<li>' . __( '<strong>Delete Permanently</strong> will delete the file from the media library (as well as from any posts to which it is currently attached).' ) . '</li>' .
     246                    '<li>' . __( '<strong>View</strong> will take you to a public display page for that file.' ) . '</li>' .
     247                    '<li>' . __( '<strong>Copy URL to clipboard</strong> copies the URL for the media file to your clipboard.' ) . '</li>' .
     248                '</ul>',
    243249    )
    244250);
Note: See TracChangeset for help on using the changeset viewer.