- Timestamp:
- 02/12/2012 08:09:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/members/single/messages/notices-loop.php
r4287 r5737 1 <?php do_action( 'bp_before_notices_loop' ) ?>1 <?php do_action( 'bp_before_notices_loop' ); ?> 2 2 3 3 <?php if ( bp_has_message_threads() ) : ?> … … 6 6 7 7 <div class="pag-count" id="messages-dir-count"> 8 <?php bp_messages_pagination_count() ?>8 <?php bp_messages_pagination_count(); ?> 9 9 </div> 10 10 11 11 <div class="pagination-links" id="messages-dir-pag"> 12 <?php bp_messages_pagination() ?>12 <?php bp_messages_pagination(); ?> 13 13 </div> 14 14 15 15 </div><!-- .pagination --> 16 16 17 <?php do_action( 'bp_after_notices_pagination' ) ?>18 <?php do_action( 'bp_before_notices' ) ?>17 <?php do_action( 'bp_after_notices_pagination' ); ?> 18 <?php do_action( 'bp_before_notices' ); ?> 19 19 20 20 <table id="message-threads" class="messages-notices"> 21 21 <?php while ( bp_message_threads() ) : bp_message_thread(); ?> 22 <tr id="notice-<?php bp_message_notice_id() ?>" class="<?php bp_message_css_class(); ?>">22 <tr id="notice-<?php bp_message_notice_id(); ?>" class="<?php bp_message_css_class(); ?>"> 23 23 <td width="1%"> 24 24 </td> 25 25 <td width="38%"> 26 <strong><?php bp_message_notice_subject() ?></strong>27 <?php bp_message_notice_text() ?>26 <strong><?php bp_message_notice_subject(); ?></strong> 27 <?php bp_message_notice_text(); ?> 28 28 </td> 29 29 <td width="21%"> 30 <strong><?php bp_message_is_active_notice() ?></strong>31 <span class="activity"><?php _e("Sent:", "buddypress"); ?> <?php bp_message_notice_post_date() ?></span>30 <strong><?php bp_message_is_active_notice(); ?></strong> 31 <span class="activity"><?php _e("Sent:", "buddypress"); ?> <?php bp_message_notice_post_date(); ?></span> 32 32 </td> 33 33 34 <?php do_action( 'bp_notices_list_item' ) ?>34 <?php do_action( 'bp_notices_list_item' ); ?> 35 35 36 36 <td width="10%"> 37 <a class="button" href="<?php bp_message_activate_deactivate_link() ?>" class="confirm"><?php bp_message_activate_deactivate_text()?></a>38 <a class="button" href="<?php bp_message_notice_delete_link() ?>" class="confirm" title="<?php _e( "Delete Message", "buddypress" ); ?>">x</a>37 <a class="button" href="<?php bp_message_activate_deactivate_link(); ?>" class="confirm"><?php bp_message_activate_deactivate_text(); ?></a> 38 <a class="button" href="<?php bp_message_notice_delete_link(); ?>" class="confirm" title="<?php _e( "Delete Message", "buddypress" ); ?>">x</a> 39 39 </td> 40 40 </tr> … … 42 42 </table><!-- #message-threads --> 43 43 44 <?php do_action( 'bp_after_notices' ) ?>44 <?php do_action( 'bp_after_notices' ); ?> 45 45 46 46 <?php else: ?> … … 52 52 <?php endif;?> 53 53 54 <?php do_action( 'bp_after_notices_loop' ) ?>54 <?php do_action( 'bp_after_notices_loop' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.