Make WordPress Core


Ignore:
Timestamp:
10/26/2016 02:44:57 PM (8 years ago)
Author:
johnbillion
Message:

Administration: Standardise the docblocks for the handle_bulk_actions-* filters.

Props ericlewis, Veraxus
Fixes #16031

File:
1 edited

Legend:

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

    r38722 r38958  
    165165            break;
    166166        default:
    167             /**
    168              * Fires when a custom bulk action should be handled.
    169              *
    170              * The redirect link should be modified with success or failure feedback
    171              * from the action to be used to display feedback to the user.
    172              *
    173              * @since 4.7.0
    174              *
    175              * @param string $location The redirect URL.
    176              * @param string $doaction The action being taken.
    177              * @param array  $post_ids The posts to take the action on.
    178              */
     167            /** This action is documented in wp-admin/edit-comments.php */
    179168            $location = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $location, $doaction, $post_ids );
    180169    }
Note: See TracChangeset for help on using the changeset viewer.