Changeset 3616
- Timestamp:
- 12/30/2010 04:34:05 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-blogs/bp-blogs-templatetags.php
r3511 r3616 84 84 return true; 85 85 } elseif ( $this->current_blog + 1 == $this->blog_count ) { 86 do_action(' loop_end');86 do_action('blog_loop_end'); 87 87 // Do some cleaning up after the loop 88 88 $this->rewind_blogs(); … … 100 100 101 101 if ( 0 == $this->current_blog ) // loop has just started 102 do_action(' loop_start');102 do_action('blog_loop_start'); 103 103 } 104 104 } -
trunk/bp-core/bp-core-templatetags.php
r3610 r3616 87 87 return true; 88 88 } elseif ( $this->current_member + 1 == $this->member_count ) { 89 do_action(' loop_end');89 do_action('member_loop_end'); 90 90 // Do some cleaning up after the loop 91 91 $this->rewind_members(); … … 103 103 104 104 if ( 0 == $this->current_member ) // loop has just started 105 do_action(' loop_start');105 do_action('member_loop_start'); 106 106 } 107 107 } -
trunk/bp-forums/bp-forums-templatetags.php
r3610 r3616 140 140 return true; 141 141 } elseif ( $this->current_topic + 1 == $this->topic_count ) { 142 do_action(' loop_end');142 do_action('forum_loop_end'); 143 143 // Do some cleaning up after the loop 144 144 $this->rewind_topics(); … … 157 157 158 158 if ( $this->current_topic == 0 ) // loop has just started 159 do_action(' loop_start');159 do_action('forum_loop_start'); 160 160 } 161 161 } … … 799 799 return true; 800 800 } elseif ( $this->current_post + 1 == $this->post_count ) { 801 do_action(' loop_end');801 do_action('topic_loop_end'); 802 802 // Do some cleaning up after the loop 803 803 $this->rewind_posts(); … … 816 816 817 817 if ( $this->current_post == 0 ) // loop has just started 818 do_action(' loop_start');818 do_action('topic_loop_start'); 819 819 } 820 820 } -
trunk/bp-groups/bp-groups-templatetags.php
r3592 r3616 106 106 return true; 107 107 } elseif ( $this->current_group + 1 == $this->group_count ) { 108 do_action(' loop_end');108 do_action('group_loop_end'); 109 109 // Do some cleaning up after the loop 110 110 $this->rewind_groups(); … … 125 125 126 126 if ( 0 == $this->current_group ) // loop has just started 127 do_action(' loop_start');127 do_action('group_loop_start'); 128 128 } 129 129 } … … 2067 2067 return true; 2068 2068 } elseif ( $this->current_request + 1 == $this->request_count ) { 2069 do_action(' loop_end');2069 do_action('group_request_loop_end'); 2070 2070 // Do some cleaning up after the loop 2071 2071 $this->rewind_requests(); … … 2083 2083 2084 2084 if ( 0 == $this->current_request ) // loop has just started 2085 do_action(' loop_start');2085 do_action('group_request_loop_start'); 2086 2086 } 2087 2087 } -
trunk/bp-messages/bp-messages-templatetags.php
r3610 r3616 100 100 return true; 101 101 } elseif ( $this->current_thread + 1 == $this->thread_count ) { 102 do_action(' loop_end');102 do_action('messages_box_loop_end'); 103 103 // Do some cleaning up after the loop 104 104 $this->rewind_threads(); … … 144 144 145 145 if ( 0 == $this->current_thread ) // loop has just started 146 do_action(' loop_start');146 do_action('messages_box_loop_start'); 147 147 } 148 148 }
Note: See TracChangeset
for help on using the changeset viewer.