Changeset 6573 for trunk/src/includes/admin/metaboxes.php
- Timestamp:
- 06/16/2017 09:20:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/metaboxes.php
r6542 r6573 95 95 * 96 96 * @deprecated 2.6.0 bbPress (r5268) 97 *98 * @uses bbp_get_version() To get the current bbPress version99 * @uses bbp_get_statistics() To get the forum statistics100 * @uses current_user_can() To check if the user is capable of doing things101 * @uses bbp_get_forum_post_type() To get the forum post type102 * @uses bbp_get_topic_post_type() To get the topic post type103 * @uses bbp_get_reply_post_type() To get the reply post type104 * @uses get_admin_url() To get the administration url105 * @uses add_query_arg() To add custom args to the url106 * @uses do_action() Calls 'bbp_dashboard_widget_right_now_content_table_end'107 * below the content table108 * @uses do_action() Calls 'bbp_dashboard_widget_right_now_table_end'109 * below the discussion table110 * @uses do_action() Calls 'bbp_dashboard_widget_right_now_discussion_table_end'111 * below the discussion table112 * @uses do_action() Calls 'bbp_dashboard_widget_right_now_end' below the widget113 97 */ 114 98 function bbp_dashboard_widget_right_now() { … … 319 303 * 320 304 * @since 2.0.0 bbPress (r2744) 321 *322 * @uses bbp_is_forum_closed() To check if a forum is closed or not323 * @uses bbp_is_forum_category() To check if a forum is a category or not324 * @uses bbp_is_forum_private() To check if a forum is private or not325 * @uses bbp_dropdown() To show a dropdown of the forums for forum parent326 * @uses do_action() Calls 'bbp_forum_metabox'327 305 */ 328 306 function bbp_forum_metabox( $post ) { … … 416 394 * 417 395 * @since 2.0.0 bbPress (r2464) 418 *419 * @uses bbp_get_topic_forum_id() To get the topic forum id420 * @uses do_action() Calls 'bbp_topic_metabox'421 396 */ 422 397 function bbp_topic_metabox( $post ) { … … 489 464 * 490 465 * @since 2.0.0 bbPress (r2464) 491 *492 * @uses bbp_get_topic_post_type() To get the topic post type493 * @uses do_action() Calls 'bbp_reply_metabox'494 466 */ 495 467 function bbp_reply_metabox( $post ) { … … 626 598 * 627 599 * @param WP_Post $post The current post object 628 * @uses bbp_is_reply_anonymous() To check if reply is anonymous629 * @uses bbp_is_topic_anonymous() To check if topic is anonymous630 * @uses get_post_meta() To get the author user information631 600 */ 632 601 function bbp_author_metabox( $post ) { … … 678 647 * 679 648 * @since 2.6.0 bbPress (r2828) 680 *681 * @uses get_the_ID() To get the global post ID682 * @uses get_post_meta() To get the author user information683 649 */ 684 650 function bbp_moderator_assignment_metabox( $post ) {
Note: See TracChangeset
for help on using the changeset viewer.