bp_nouveau_notifications_bulk_management_dropdown()
Output the dropdown for bulk management of notifications.
Source Source
File: bp-templates/bp-nouveau/includes/notifications/template-tags.php
function bp_nouveau_notifications_bulk_management_dropdown() { ?> <div class="select-wrap"> <label class="bp-screen-reader-text" for="notification-select"><?php esc_html_e( 'Select Bulk Action', 'buddypress' ); ?></label> <select name="notification_bulk_action" id="notification-select"> <option value="" selected="selected"><?php esc_html_e( 'Bulk Actions', 'buddypress' ); ?></option> <?php if ( bp_is_current_action( 'unread' ) ) : ?> <option value="read"><?php echo esc_html_x( 'Mark read', 'button', 'buddypress' ); ?></option> <?php elseif ( bp_is_current_action( 'read' ) ) : ?> <option value="unread"><?php echo esc_html_x( 'Mark unread', 'button', 'buddypress' ); ?></option> <?php endif; ?> <option value="delete"><?php echo esc_html_x( 'Delete', 'button', 'buddypress' ); ?></option> </select> <span class="select-arrow"></span> </div><!-- // .select-wrap --> <input type="submit" id="notification-bulk-manage" class="button action" value="<?php echo esc_attr_x( 'Apply', 'button', 'buddypress' ); ?>"> <?php }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |