Make WordPress Core

Ticket #28654: help_tab_media_grid.diff

File help_tab_media_grid.diff, 2.8 KB (added by sdavis2702, 11 years ago)

Media Grid Help Tab

  • wp-admin/upload.php

     
    3232                'id'            => 'overview',
    3333                'title'         => __( 'Overview' ),
    3434                'content'       =>
    35                         '<p>' . __( 'All the files you&#8217;ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.' ) . '</p>'
     35                        '<p>' . __( 'All the files you&#8217;ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can customize the display of this screen&#8217;s contents in a number of ways using the toolbar at the top of the screen:') . '</p>' .
     36                        '<ul>' .
     37                                '<li>' . __('You can filter the media grid to display the different types of media you have uploaded, such as Images, Audio, or Video.') . '</li>' .
     38                                '<li>' . __('You can filter your media by the month it was uploaded.') . '</li>' .
     39                                '<li>' . __('You can use the search field to display media based on custom queries. The media will rearrange itself automatically without reloading the page.') . '</li>' .
     40                        '</ul>'
    3641        ) );
     42        get_current_screen()->add_help_tab( array(
     43        'id'            => 'attachment-details',
     44        'title'         => __('Attachment Details'),
     45        'content'       =>
     46                '<p>' . __('Each item displayed in the media grid has an Attachment Details screen available through clicking the media item thumbnail itself. Once clicked, a popup will display additional information about the item such as file name, type, and size.') . '</p>' .
     47                '<p>' . __('From the Attachment Details popup, you have access to settings and information based on the file type. For example, images will display an Edit Image button that allows you to perform actions such as rotate, flip, and even crop the image without leaving the screen.') . '</p>' .
     48                '<p>' . __('You can also retrieve the attachment URL, see if it is attached to content, or permanently delete an item from this screen.') . '</p>' .
     49                '<p>' . __('All changes are saved in the window making it easy to edit multiple media files in a row by using the previous and next navigation in the popup.') . '</p>'
     50        ) );
     51        get_current_screen()->add_help_tab( array(
     52        'id'            => 'bulk-actions',
     53        'title'         => __('Bulk Actions'),
     54        'content'       =>
     55                '<p>' . __('You can perform bulk actions on multiple media items at once by selecting the checkbox overlay on each media item&#8217;s thumbnail. Once a media item has been selected, the bulk actions select menu will be enabled where you can select options that will apply to all selected items, like "Delete Permanently."') . '</p>' .
     56                '<p>' . __('Click Apply to execute the bulk action.') . '</p>'
     57        ) );
    3758
    3859        get_current_screen()->set_help_sidebar(
    3960                '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .