Changeset 10138 for trunk/src/bp-notifications/bp-notifications-screens.php
- Timestamp:
- 09/24/2015 11:55:02 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-notifications/bp-notifications-screens.php
r9819 r10138 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Notifications Screen Functions. … … 12 11 */ 13 12 14 // Exit if accessed directly 13 // Exit if accessed directly. 15 14 defined( 'ABSPATH' ) || exit; 16 15 … … 18 17 * Catch and route the 'unread' notifications screen. 19 18 * 20 * @since BuddyPress (1.9.0)19 * @since 1.9.0 21 20 */ 22 21 function bp_notifications_screen_unread() { … … 25 24 * Fires right before the loading of the notifications unread screen template file. 26 25 * 27 * @since BuddyPress (1.9.0)26 * @since 1.9.0 28 27 */ 29 28 do_action( 'bp_notifications_screen_unread' ); … … 32 31 * Filters the template to load for the notifications unread screen. 33 32 * 34 * @since BuddyPress (1.9.0)33 * @since 1.9.0 35 34 * 36 35 * @param string $template Path to the notifications unread template to load. … … 42 41 * Catch and route the 'read' notifications screen. 43 42 * 44 * @since BuddyPress (1.9.0)43 * @since 1.9.0 45 44 */ 46 45 function bp_notifications_screen_read() { … … 49 48 * Fires right before the loading of the notifications read screen template file. 50 49 * 51 * @since BuddyPress (1.9.0)50 * @since 1.9.0 52 51 */ 53 52 do_action( 'bp_notifications_screen_read' ); … … 56 55 * Filters the template to load for the notifications read screen. 57 56 * 58 * @since BuddyPress (1.9.0)57 * @since 1.9.0 59 58 * 60 59 * @param string $template Path to the notifications read template to load. … … 66 65 * Catch and route the 'settings' notifications screen. 67 66 * 68 * @since BuddyPress (1.9.0)67 * @since 1.9.0 69 68 */ 70 69 function bp_notifications_screen_settings() {
Note: See TracChangeset
for help on using the changeset viewer.