Changeset 9814 for trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php
- Timestamp:
- 04/28/2015 01:52:18 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php
r9604 r9814 1 <?php do_action( 'bp_before_notices_loop' ); ?> 1 <?php 2 3 /** 4 * Fires before the members notices loop. 5 * 6 * @since BuddyPress (1.2.0) 7 */ 8 do_action( 'bp_before_notices_loop' ); ?> 2 9 3 10 <?php if ( bp_has_message_threads() ) : ?> … … 15 22 </div><!-- .pagination --> 16 23 17 <?php do_action( 'bp_after_notices_pagination' ); ?> 18 <?php do_action( 'bp_before_notices' ); ?> 24 <?php 25 26 /** 27 * Fires after the members notices pagination display. 28 * 29 * @since BuddyPress (1.2.0) 30 */ 31 do_action( 'bp_after_notices_pagination' ); ?> 32 <?php 33 34 /** 35 * Fires before the members notice items. 36 * 37 * @since BuddyPress (1.2.0) 38 */ 39 do_action( 'bp_before_notices' ); ?> 19 40 20 41 <table id="message-threads" class="messages-notices"> … … 37 58 </td> 38 59 39 <?php do_action( 'bp_notices_list_item' ); ?> 60 <?php 61 62 /** 63 * Fires inside the display of a member notice list item. 64 * 65 * @since BuddyPress (1.2.0) 66 */ 67 do_action( 'bp_notices_list_item' ); ?> 40 68 41 69 <td width="10%"> … … 47 75 </table><!-- #message-threads --> 48 76 49 <?php do_action( 'bp_after_notices' ); ?> 77 <?php 78 79 /** 80 * Fires after the members notice items. 81 * 82 * @since BuddyPress (1.2.0) 83 */ 84 do_action( 'bp_after_notices' ); ?> 50 85 51 86 <?php else: ?> … … 57 92 <?php endif;?> 58 93 59 <?php do_action( 'bp_after_notices_loop' ); ?> 94 <?php 95 96 /** 97 * Fires after the members notices loop. 98 * 99 * @since BuddyPress (1.2.0) 100 */ 101 do_action( 'bp_after_notices_loop' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.