bp_notifications_bulk_management_dropdown()
Output the dropdown for bulk management of notifications.
Description Description
Source Source
File: bp-notifications/bp-notifications-template.php
function bp_notifications_bulk_management_dropdown() {
?>
<label class="bp-screen-reader-text" for="notification-select"><?php
/* translators: accessibility text */
_e( 'Select Bulk Action', 'buddypress' );
?></label>
<select name="notification_bulk_action" id="notification-select">
<option value="" selected="selected"><?php _e( 'Bulk Actions', 'buddypress' ); ?></option>
<?php if ( bp_is_current_action( 'unread' ) ) : ?>
<option value="read"><?php _e( 'Mark read', 'buddypress' ); ?></option>
<?php elseif ( bp_is_current_action( 'read' ) ) : ?>
<option value="unread"><?php _e( 'Mark unread', 'buddypress' ); ?></option>
<?php endif; ?>
<option value="delete"><?php _e( 'Delete', 'buddypress' ); ?></option>
</select>
<input type="submit" id="notification-bulk-manage" class="button action" value="<?php esc_attr_e( 'Apply', 'buddypress' ); ?>">
<?php
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.2.0 | Introduced. |