Changeset 6272
- Timestamp:
- 02/02/2017 07:46:37 PM (8 years ago)
- Location:
- trunk/src/includes
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/forums.php
r6252 r6272 218 218 219 219 /** 220 * Add the forum attributes meta box220 * Add the forum attributes meta-box 221 221 * 222 222 * @since 2.0.0 bbPress (r2746) 223 223 * 224 224 * @uses bbp_get_forum_post_type() To get the forum post type 225 * @uses add_meta_box() To add the meta box225 * @uses add_meta_box() To add the meta-box 226 226 * @uses do_action() Calls 'bbp_forum_attributes_metabox' 227 227 */ … … 238 238 239 239 /** 240 * Add the forum moderators meta box240 * Add the forum moderators meta-box 241 241 * 242 242 * @since 2.6.0 bbPress 243 243 * 244 244 * @uses bbp_get_forum_post_type() To get the forum post type 245 * @uses add_meta_box() To add the meta box245 * @uses add_meta_box() To add the meta-box 246 246 * @uses do_action() Calls 'bbp_forum_attributes_metabox' 247 247 */ … … 265 265 266 266 /** 267 * Add the subscriptions meta box267 * Add the subscriptions meta-box 268 268 * 269 269 * Allows viewing of users who have subscribed to a forum. … … 271 271 * @since 2.6.0 bbPress (r6197) 272 272 * 273 * @uses add_meta_box() To add the meta box273 * @uses add_meta_box() To add the meta-box 274 274 */ 275 275 public function subscriptions_metabox() { … … 285 285 } 286 286 287 // Add the meta box287 // Add the meta-box 288 288 add_meta_box( 289 289 'bbp_forum_subscriptions_metabox', … … 297 297 298 298 /** 299 * Remove comments & discussion meta boxes if comments are not supported299 * Remove comments & discussion meta-boxes if comments are not supported 300 300 * 301 301 * @since 2.6.0 bbPress (r6186) -
trunk/src/includes/admin/metaboxes.php
r6271 r6272 282 282 283 283 /** 284 * Forum meta box285 * 286 * The meta box that holds all of the additional forum information284 * Forum meta-box 285 * 286 * The meta-box that holds all of the additional forum information 287 287 * 288 288 * @since 2.0.0 bbPress (r2744) … … 379 379 380 380 /** 381 * Topic meta box382 * 383 * The meta box that holds all of the additional topic information381 * Topic meta-box 382 * 383 * The meta-box that holds all of the additional topic information 384 384 * 385 385 * @since 2.0.0 bbPress (r2464) … … 452 452 453 453 /** 454 * Reply meta box455 * 456 * The meta box that holds all of the additional reply information454 * Reply meta-box 455 * 456 * The meta-box that holds all of the additional reply information 457 457 * 458 458 * @since 2.0.0 bbPress (r2464) … … 548 548 549 549 /** 550 * Output the topic replies meta box550 * Output the topic replies meta-box 551 551 * 552 552 * @since 2.6.0 bbPress (r5886) … … 589 589 590 590 /** 591 * Anonymous user information meta box591 * Anonymous user information meta-box 592 592 * 593 593 * @since 2.0.0 bbPress (r2828) … … 643 643 644 644 /** 645 * Moderator assignment meta box645 * Moderator assignment meta-box 646 646 * 647 647 * @since 2.6.0 bbPress (r2828) -
trunk/src/includes/admin/replies.php
r6263 r6272 77 77 add_filter( 'post_row_actions', array( $this, 'row_actions' ), 10, 2 ); 78 78 79 // Reply meta box actions79 // Reply meta-box actions 80 80 add_action( 'add_meta_boxes', array( $this, 'attributes_metabox' ) ); 81 81 add_action( 'add_meta_boxes', array( $this, 'author_metabox' ) ); … … 329 329 330 330 /** 331 * Add the reply attributes meta box331 * Add the reply attributes meta-box 332 332 * 333 333 * @since 2.0.0 bbPress (r2746) 334 334 * 335 335 * @uses bbp_get_reply_post_type() To get the reply post type 336 * @uses add_meta_box() To add the meta box336 * @uses add_meta_box() To add the meta-box 337 337 * @uses do_action() Calls 'bbp_reply_attributes_metabox' 338 338 */ … … 349 349 350 350 /** 351 * Add the author info meta box351 * Add the author info meta-box 352 352 * 353 353 * Allows editing of information about an author … … 359 359 * @uses bbp_get_topic_post_type() To get the topic post type 360 360 * @uses bbp_get_reply_post_type() To get the reply post type 361 * @uses add_meta_box() To add the meta box361 * @uses add_meta_box() To add the meta-box 362 362 */ 363 363 public function author_metabox() { … … 368 368 } 369 369 370 // Add the meta box370 // Add the meta-box 371 371 add_meta_box( 372 372 'bbp_author_metabox', … … 380 380 381 381 /** 382 * Remove comments & discussion meta boxes if comments are not supported382 * Remove comments & discussion meta-boxes if comments are not supported 383 383 * 384 384 * @since 2.6.0 bbPress (r6186) -
trunk/src/includes/admin/topics.php
r6263 r6272 77 77 add_filter( 'post_row_actions', array( $this, 'row_actions' ), 10, 2 ); 78 78 79 // Topic meta box actions79 // Topic meta-box actions 80 80 add_action( 'add_meta_boxes', array( $this, 'attributes_metabox' ) ); 81 81 add_action( 'add_meta_boxes', array( $this, 'author_metabox' ) ); … … 333 333 334 334 /** 335 * Add the topic attributes meta box335 * Add the topic attributes meta-box 336 336 * 337 337 * @since 2.0.0 bbPress (r2744) 338 338 * 339 339 * @uses bbp_get_topic_post_type() To get the topic post type 340 * @uses add_meta_box() To add the meta box340 * @uses add_meta_box() To add the meta-box 341 341 * @uses do_action() Calls 'bbp_topic_attributes_metabox' 342 342 */ … … 353 353 354 354 /** 355 * Add the author info meta box355 * Add the author info meta-box 356 356 * 357 357 * @since 2.0.0 bbPress (r2828) 358 358 * 359 * @uses add_meta_box() To add the meta box359 * @uses add_meta_box() To add the meta-box 360 360 */ 361 361 public function author_metabox() { … … 366 366 } 367 367 368 // Add the meta box368 // Add the meta-box 369 369 add_meta_box( 370 370 'bbp_author_metabox', … … 378 378 379 379 /** 380 * Add the replies meta box380 * Add the replies meta-box 381 381 * 382 382 * Allows viewing & moderating of replies to a topic, based on the way … … 389 389 * @uses bbp_get_topic_post_type() To get the topic post type 390 390 * @uses bbp_get_reply_post_type() To get the reply post type 391 * @uses add_meta_box() To add the meta box391 * @uses add_meta_box() To add the meta-box 392 392 * @uses do_action() Calls 'bbp_author_metabox' with the topic/reply 393 393 * id … … 400 400 } 401 401 402 // Add the meta box402 // Add the meta-box 403 403 add_meta_box( 404 404 'bbp_topic_replies_metabox', … … 412 412 413 413 /** 414 * Add the favorites meta box414 * Add the favorites meta-box 415 415 * 416 416 * Allows viewing of users who have favorited a topic. … … 418 418 * @since 2.6.0 bbPress (r6197) 419 419 * 420 * @uses add_meta_box() To add the meta box420 * @uses add_meta_box() To add the meta-box 421 421 */ 422 422 public function favorites_metabox() { … … 432 432 } 433 433 434 // Add the meta box434 // Add the meta-box 435 435 add_meta_box( 436 436 'bbp_topic_favorites_metabox', … … 444 444 445 445 /** 446 * Add the subscriptions meta box446 * Add the subscriptions meta-box 447 447 * 448 448 * Allows viewing of users who have subscribed to a topic. … … 450 450 * @since 2.6.0 bbPress (r6197) 451 451 * 452 * @uses add_meta_box() To add the meta box452 * @uses add_meta_box() To add the meta-box 453 453 */ 454 454 public function subscriptions_metabox() { … … 464 464 } 465 465 466 // Add the meta box466 // Add the meta-box 467 467 add_meta_box( 468 468 'bbp_topic_subscriptions_metabox', … … 476 476 477 477 /** 478 * Remove comments & discussion meta boxes if comments are not supported478 * Remove comments & discussion meta-boxes if comments are not supported 479 479 * 480 480 * @since 2.6.0 bbPress (r6186) -
trunk/src/includes/extend/akismet.php
r6250 r6272 759 759 760 760 /** 761 * Add Aksimet History meta boxes to topics and replies761 * Add Aksimet History meta-boxes to topics and replies 762 762 * 763 763 * @since 2.4.0 bbPress (r5049) … … 787 787 788 788 /** 789 * Output for Akismet History meta box789 * Output for Akismet History meta-box 790 790 * 791 791 * @since 2.4.0 bbPress (r5049) -
trunk/src/includes/extend/buddypress/groups.php
r6253 r6272 92 92 add_action( 'groups_before_delete_group', array( $this, 'disconnect_forum_from_group' ) ); 93 93 94 // Adds a bbPress meta box to the new BuddyPress Group Admin UI94 // Adds a bbPress meta-box to the new BuddyPress Group Admin UI 95 95 add_action( 'bp_groups_admin_meta_boxes', array( $this, 'group_admin_ui_edit_screen' ) ); 96 96 … … 460 460 461 461 /** 462 * Adds a meta box to BuddyPress Group Admin UI462 * Adds a meta-box to BuddyPress Group Admin UI 463 463 * 464 464 * @since 2.3.0 bbPress (r4814) … … 479 479 480 480 /** 481 * Displays the bbPress meta box in BuddyPress Group Admin UI481 * Displays the bbPress meta-box in BuddyPress Group Admin UI 482 482 * 483 483 * @since 2.3.0 bbPress (r4814)
Note: See TracChangeset
for help on using the changeset viewer.