- Timestamp:
- 04/17/2015 03:31:35 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/activity/entry.php
r9604 r9762 13 13 ?> 14 14 15 <?php do_action( 'bp_before_activity_entry' ); ?> 15 <?php 16 17 /** 18 * Fires before the display of an activity entry. 19 * 20 * @since BuddyPress (1.2.0) 21 */ 22 do_action( 'bp_before_activity_entry' ); ?> 16 23 17 24 <li class="<?php bp_activity_css_class(); ?>" id="activity-<?php bp_activity_id(); ?>"> … … 42 49 <?php endif; ?> 43 50 44 <?php do_action( 'bp_activity_entry_content' ); ?> 51 <?php 52 53 /** 54 * Fires after the display of an activity entry content. 55 * 56 * @since BuddyPress (1.2.0) 57 */ 58 do_action( 'bp_activity_entry_content' ); ?> 45 59 46 60 <div class="activity-meta"> … … 76 90 <?php if ( bp_activity_user_can_delete() ) bp_activity_delete_link(); ?> 77 91 78 <?php do_action( 'bp_activity_entry_meta' ); ?> 92 <?php 93 94 /** 95 * Fires at the end of the activity entry meta data area. 96 * 97 * @since BuddyPress (1.2.0) 98 */ 99 do_action( 'bp_activity_entry_meta' ); ?> 79 100 80 101 <?php endif; ?> … … 84 105 </div> 85 106 86 <?php do_action( 'bp_before_activity_entry_comments' ); ?> 107 <?php 108 109 /** 110 * Fires before the display of the activity entry comments. 111 * 112 * @since BuddyPress (1.2.0) 113 */ 114 do_action( 'bp_before_activity_entry_comments' ); ?> 87 115 88 116 <?php if ( ( bp_activity_get_comment_count() || bp_activity_can_comment() ) || bp_is_single_activity() ) : ?> … … 104 132 </div> 105 133 106 <?php do_action( 'bp_activity_entry_comments' ); ?> 134 <?php 135 136 /** 137 * Fires after the activity entry comment form. 138 * 139 * @since BuddyPress (1.5.0) 140 */ 141 do_action( 'bp_activity_entry_comments' ); ?> 107 142 108 143 <?php wp_nonce_field( 'new_activity_comment', '_wpnonce_new_activity_comment' ); ?> … … 116 151 <?php endif; ?> 117 152 118 <?php do_action( 'bp_after_activity_entry_comments' ); ?> 153 <?php 154 155 /** 156 * Fires after the display of the activity entry comments. 157 * 158 * @since BuddyPress (1.2.0) 159 */ 160 do_action( 'bp_after_activity_entry_comments' ); ?> 119 161 120 162 </li> 121 163 122 <?php do_action( 'bp_after_activity_entry' ); ?> 164 <?php 165 166 /** 167 * Fires after the display of an activity entry. 168 * 169 * @since BuddyPress (1.2.0) 170 */ 171 do_action( 'bp_after_activity_entry' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.