Changeset 10096 for trunk/src/bp-forums/bp-forums-screens.php
- Timestamp:
- 09/12/2015 05:51:55 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-forums/bp-forums-screens.php
r9819 r10096 4 4 * 5 5 * @package BuddyPress 6 * @subpackage Forums 7 */ 8 9 // Exit if accessed directly 6 * @subpackage ForumsScreens 7 */ 8 9 // Exit if accessed directly. 10 10 defined( 'ABSPATH' ) || exit; 11 11 … … 32 32 * Fires early in the initialization of bbPress-based areas of BuddyPress. 33 33 * 34 * @since BuddyPress (1.1.0)34 * @since 1.1.0 35 35 */ 36 36 do_action( 'bbpress_init' ); … … 84 84 * Fires right before the loading of the forums directory screen template file. 85 85 * 86 * @since BuddyPress (1.1.0)86 * @since 1.1.0 87 87 */ 88 88 do_action( 'bp_forums_directory_forums_setup' ); … … 91 91 * Filters the template to load for the forums directory screen. 92 92 * 93 * @since BuddyPress (1.1.0)93 * @since 1.1.0 94 94 * 95 95 * @param string $template Path to the forums template to load. … … 108 108 * Fires right before the loading of the forums topics started screen template file. 109 109 * 110 * @since BuddyPress (1.5.0)110 * @since 1.5.0 111 111 */ 112 112 do_action( 'bp_member_forums_screen_topics' ); … … 115 115 * Filters the template to load for the forums topics started screen. 116 116 * 117 * @since BuddyPress (1.5.0)117 * @since 1.5.0 118 118 * 119 119 * @param string $template Path to the forums topics started template to load. … … 130 130 * Fires right before the loading of the forums replied to screen template file. 131 131 * 132 * @since BuddyPress (1.5.0)132 * @since 1.5.0 133 133 */ 134 134 do_action( 'bp_member_forums_screen_replies' ); … … 137 137 * Filters the template to load for the forums replied to screen. 138 138 * 139 * @since BuddyPress (1.5.0)139 * @since 1.5.0 140 140 * 141 141 * @param string $template Path to the forums replied to template to load. … … 154 154 * Fires right before the loading of the forums favorites screen template file. 155 155 * 156 * @since BuddyPress (1.5.0)156 * @since 1.5.0 157 157 */ 158 158 do_action( 'bp_member_forums_screen_favorites' ); … … 161 161 * Filters the template to load for the forums favorites screen. 162 162 * 163 * @since BuddyPress (1.5.0)163 * @since 1.5.0 164 164 * 165 165 * @param string $template Path to the forums favorites template to load. … … 179 179 * Fires right before the loading of the forums single forum screen template file. 180 180 * 181 * @since BuddyPress (1.5.0)181 * @since 1.5.0 182 182 */ 183 183 do_action( 'bp_forums_screen_single_forum' ); … … 186 186 * Filters the template to load for the forums single forum screen. 187 187 * 188 * @since BuddyPress (1.5.0)188 * @since 1.5.0 189 189 * 190 190 * @param string $template Path to the forums single forum template to load. … … 205 205 * Fires right before the loading of the forums single topic screen template file. 206 206 * 207 * @since BuddyPress (1.5.0)207 * @since 1.5.0 208 208 */ 209 209 do_action( 'bp_forums_screen_single_topic' ); … … 212 212 * Filters the template to load for the forums single topic screen. 213 213 * 214 * @since BuddyPress (1.5.0)214 * @since 1.5.0 215 215 * 216 216 * @param string $template Path to the forums single topic template to load. … … 229 229 * old forum template parts to the_title and the_content areas of a theme. 230 230 * 231 * @since BuddyPress (1.7.0)231 * @since 1.7.0 232 232 */ 233 233 class BP_Forum_Legacy_Theme_Compat { … … 236 236 * Set up theme compatibility for the legacy forums component. 237 237 * 238 * @since BuddyPress (1.7.0)238 * @since 1.7.0 239 239 */ 240 240 public function __construct() { … … 245 245 * Are we looking at something that needs old forum theme compatibility? 246 246 * 247 * @since BuddyPress (1.7.0)247 * @since 1.7.0 248 248 */ 249 249 public function is_legacy_forum() { … … 280 280 * Update the global $post with directory data. 281 281 * 282 * @since BuddyPress (1.7.0)282 * @since 1.7.0 283 283 */ 284 284 public function directory_dummy_post() { … … 307 307 * Filter the_content with the old forum index template part. 308 308 * 309 * @since BuddyPress (1.7.0)309 * @since 1.7.0 310 310 */ 311 311 public function directory_content() {
Note: See TracChangeset
for help on using the changeset viewer.