PluginProbe
bbPress / 2.6.17
bbPress v2.6.17
2.6.17 trunk 2.0 2.0-beta-1 2.0-beta-2b 2.0-beta-3 2.0-beta-3b 2.0-rc-2 2.0-rc-3 2.0-rc-4 2.0-rc-5 2.0.1 2.0.2 2.0.3 2.1 2.1-beta-1 2.1-rc1 2.1-rc2 2.1-rc3 2.1-rc4 2.1.1 2.1.2 2.1.3 2.2 2.2.1 All 72 releases
← All changes | includes/admin/metaboxes.php +18 -18 trunk2.6.17 View file →
@@ -1,8 +1,8 @@
1 1 <?php
2 2
3 3 /**
4 - * bbPress Admin Metaboxes.
4 + * bbPress Admin Metaboxes
5 5 *
6 6 * @package bbPress
7 7 * @subpackage Administration
8 8 */
@@ -105,11 +105,11 @@
105 105 return (array) apply_filters( 'bbp_dashboard_at_a_glance', $elements, $r );
106 106 }
107 107
108 108 /**
109 - * bbPress Dashboard Right Now Widget.
109 + * bbPress Dashboard Right Now Widget
110 110 *
111 - * Adds a dashboard widget with forum statistics.
111 + * Adds a dashboard widget with forum statistics
112 112 *
113 113 * @since 2.0.0 bbPress (r2770)
114 114 *
115 115 * @deprecated 2.6.0 bbPress (r5268)
@@ -329,11 +329,11 @@
329 329
330 330 /** Forums ********************************************************************/
331 331
332 332 /**
333 - * Forum meta-box.
333 + * Forum meta-box
334 334 *
335 - * The meta-box that holds all of the additional forum information.
335 + * The meta-box that holds all of the additional forum information
336 336 *
337 337 * @since 2.0.0 bbPress (r2744)
338 338 */
339 339 function bbp_forum_metabox( $post ) {
@@ -424,11 +424,11 @@
424 424
425 425 /** Topics ********************************************************************/
426 426
427 427 /**
428 - * Topic meta-box.
428 + * Topic meta-box
429 429 *
430 - * The meta-box that holds all of the additional topic information.
430 + * The meta-box that holds all of the additional topic information
431 431 *
432 432 * @since 2.0.0 bbPress (r2464)
433 433 */
434 434 function bbp_topic_metabox( $post ) {
@@ -503,11 +503,11 @@
503 503
504 504 /** Replies *******************************************************************/
505 505
506 506 /**
507 - * Reply meta-box.
507 + * Reply meta-box
508 508 *
509 - * The meta-box that holds all of the additional reply information.
509 + * The meta-box that holds all of the additional reply information
510 510 *
511 511 * @since 2.0.0 bbPress (r2464)
512 512 */
513 513 function bbp_reply_metabox( $post ) {
@@ -605,9 +605,9 @@
605 605 do_action( 'bbp_reply_metabox', $post );
606 606 }
607 607
608 608 /**
609 - * Output the topic replies meta-box.
609 + * Output the topic replies meta-box
610 610 *
611 611 * @since 2.6.0 bbPress (r5886)
612 612 *
613 613 * @param object $topic
@@ -646,13 +646,13 @@
646 646
647 647 /** Users *********************************************************************/
648 648
649 649 /**
650 - * Anonymous user information meta-box.
650 + * Anonymous user information meta-box
651 651 *
652 652 * @since 2.0.0 bbPress (r2828)
653 653 *
654 - * @param WP_Post $post The current post object.
654 + * @param WP_Post $post The current post object
655 655 */
656 656 function bbp_author_metabox( $post ) {
657 657
658 658 // Show extra bits if topic/reply is anonymous
@@ -697,9 +697,9 @@
697 697 do_action( 'bbp_author_metabox', $post );
698 698 }
699 699
700 700 /**
701 - * Moderator assignment meta-box.
701 + * Moderator assignment meta-box
702 702 *
703 703 * @since 2.6.0 bbPress (r2828)
704 704 */
705 705 function bbp_moderator_assignment_metabox( $post ) {
@@ -720,9 +720,9 @@
720 720 do_action( 'bbp_moderator_assignment_metabox', $post );
721 721 }
722 722
723 723 /**
724 - * See who engaged with a topic.
724 + * See who engaged with a topic
725 725 *
726 726 * @since 2.6.0 bbPress (r6333)
727 727 */
728 728 function bbp_topic_engagements_metabox( $post ) {
@@ -752,9 +752,9 @@
752 752 do_action( 'bbp_topic_engagements_metabox', $post );
753 753 }
754 754
755 755 /**
756 - * See who marked a topic as a favorite.
756 + * See who marked a topic as a favorite
757 757 *
758 758 * @since 2.6.0 bbPress (r6197)
759 759 * @since 2.6.0 bbPress (r6333) Updated to use BBP_User_Query
760 760 */
@@ -785,9 +785,9 @@
785 785 do_action( 'bbp_favorites_metabox', $post );
786 786 }
787 787
788 788 /**
789 - * See who is subscribed to a topic.
789 + * See who is subscribed to a topic
790 790 *
791 791 * @since 2.6.0 bbPress (r6197)
792 792 * @since 2.6.0 bbPress (r6333) Updated to use BBP_User_Query
793 793 */
@@ -825,9 +825,9 @@
825 825 do_action( 'bbp_subscriptions_metabox', $post );
826 826 }
827 827
828 828 /**
829 - * See who is subscribed to a forum.
829 + * See who is subscribed to a forum
830 830 *
831 831 * @since 2.6.0 bbPress (r6197)
832 832 * @since 2.6.0 bbPress (r6333) Updated to use BBP_User_Query
833 833 */
@@ -858,9 +858,9 @@
858 858 do_action( 'bbp_forum_subscriptions_metabox', $post );
859 859 }
860 860
861 861 /**
862 - * Loop through queried metabox users, and output links to their avatars.
862 + * Loop through queried metabox users, and output links to their avatars
863 863 *
864 864 * Developers Note: This function may change in a future release to include
865 865 * additional actions, so do not use this function in any third party plugin.
866 866 *