Skip to:
Content

bbPress.org

Changeset 6272


Ignore:
Timestamp:
02/02/2017 07:46:37 PM (8 years ago)
Author:
johnjamesjacoby
Message:

General: hyphenate "meta-box" in documentation to sooth spell-checkers.

Location:
trunk/src/includes
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/forums.php

    r6252 r6272  
    218218
    219219    /**
    220      * Add the forum attributes metabox
     220     * Add the forum attributes meta-box
    221221     *
    222222     * @since 2.0.0 bbPress (r2746)
    223223     *
    224224     * @uses bbp_get_forum_post_type() To get the forum post type
    225      * @uses add_meta_box() To add the metabox
     225     * @uses add_meta_box() To add the meta-box
    226226     * @uses do_action() Calls 'bbp_forum_attributes_metabox'
    227227     */
     
    238238
    239239    /**
    240      * Add the forum moderators metabox
     240     * Add the forum moderators meta-box
    241241     *
    242242     * @since 2.6.0 bbPress
    243243     *
    244244     * @uses bbp_get_forum_post_type() To get the forum post type
    245      * @uses add_meta_box() To add the metabox
     245     * @uses add_meta_box() To add the meta-box
    246246     * @uses do_action() Calls 'bbp_forum_attributes_metabox'
    247247     */
     
    265265
    266266    /**
    267      * Add the subscriptions metabox
     267     * Add the subscriptions meta-box
    268268     *
    269269     * Allows viewing of users who have subscribed to a forum.
     
    271271     * @since 2.6.0 bbPress (r6197)
    272272     *
    273      * @uses add_meta_box() To add the metabox
     273     * @uses add_meta_box() To add the meta-box
    274274     */
    275275    public function subscriptions_metabox() {
     
    285285        }
    286286
    287         // Add the metabox
     287        // Add the meta-box
    288288        add_meta_box(
    289289            'bbp_forum_subscriptions_metabox',
     
    297297
    298298    /**
    299      * Remove comments & discussion metaboxes if comments are not supported
     299     * Remove comments & discussion meta-boxes if comments are not supported
    300300     *
    301301     * @since 2.6.0 bbPress (r6186)
  • trunk/src/includes/admin/metaboxes.php

    r6271 r6272  
    282282
    283283/**
    284  * Forum metabox
    285  *
    286  * The metabox that holds all of the additional forum information
     284 * Forum meta-box
     285 *
     286 * The meta-box that holds all of the additional forum information
    287287 *
    288288 * @since 2.0.0 bbPress (r2744)
     
    379379
    380380/**
    381  * Topic metabox
    382  *
    383  * The metabox that holds all of the additional topic information
     381 * Topic meta-box
     382 *
     383 * The meta-box that holds all of the additional topic information
    384384 *
    385385 * @since 2.0.0 bbPress (r2464)
     
    452452
    453453/**
    454  * Reply metabox
    455  *
    456  * The metabox that holds all of the additional reply information
     454 * Reply meta-box
     455 *
     456 * The meta-box that holds all of the additional reply information
    457457 *
    458458 * @since 2.0.0 bbPress (r2464)
     
    548548
    549549/**
    550  * Output the topic replies metabox
     550 * Output the topic replies meta-box
    551551 *
    552552 * @since 2.6.0 bbPress (r5886)
     
    589589
    590590/**
    591  * Anonymous user information metabox
     591 * Anonymous user information meta-box
    592592 *
    593593 * @since 2.0.0 bbPress (r2828)
     
    643643
    644644/**
    645  * Moderator assignment metabox
     645 * Moderator assignment meta-box
    646646 *
    647647 * @since 2.6.0 bbPress (r2828)
  • trunk/src/includes/admin/replies.php

    r6263 r6272  
    7777        add_filter( 'post_row_actions',                                     array( $this, 'row_actions' ), 10, 2 );
    7878
    79         // Reply metabox actions
     79        // Reply meta-box actions
    8080        add_action( 'add_meta_boxes', array( $this, 'attributes_metabox' ) );
    8181        add_action( 'add_meta_boxes', array( $this, 'author_metabox'     ) );
     
    329329
    330330    /**
    331      * Add the reply attributes metabox
     331     * Add the reply attributes meta-box
    332332     *
    333333     * @since 2.0.0 bbPress (r2746)
    334334     *
    335335     * @uses bbp_get_reply_post_type() To get the reply post type
    336      * @uses add_meta_box() To add the metabox
     336     * @uses add_meta_box() To add the meta-box
    337337     * @uses do_action() Calls 'bbp_reply_attributes_metabox'
    338338     */
     
    349349
    350350    /**
    351      * Add the author info metabox
     351     * Add the author info meta-box
    352352     *
    353353     * Allows editing of information about an author
     
    359359     * @uses bbp_get_topic_post_type() To get the topic post type
    360360     * @uses bbp_get_reply_post_type() To get the reply post type
    361      * @uses add_meta_box() To add the metabox
     361     * @uses add_meta_box() To add the meta-box
    362362     */
    363363    public function author_metabox() {
     
    368368        }
    369369
    370         // Add the metabox
     370        // Add the meta-box
    371371        add_meta_box(
    372372            'bbp_author_metabox',
     
    380380
    381381    /**
    382      * Remove comments & discussion metaboxes if comments are not supported
     382     * Remove comments & discussion meta-boxes if comments are not supported
    383383     *
    384384     * @since 2.6.0 bbPress (r6186)
  • trunk/src/includes/admin/topics.php

    r6263 r6272  
    7777        add_filter( 'post_row_actions',                                     array( $this, 'row_actions' ), 10, 2 );
    7878
    79         // Topic metabox actions
     79        // Topic meta-box actions
    8080        add_action( 'add_meta_boxes', array( $this, 'attributes_metabox'    ) );
    8181        add_action( 'add_meta_boxes', array( $this, 'author_metabox'        ) );
     
    333333
    334334    /**
    335      * Add the topic attributes metabox
     335     * Add the topic attributes meta-box
    336336     *
    337337     * @since 2.0.0 bbPress (r2744)
    338338     *
    339339     * @uses bbp_get_topic_post_type() To get the topic post type
    340      * @uses add_meta_box() To add the metabox
     340     * @uses add_meta_box() To add the meta-box
    341341     * @uses do_action() Calls 'bbp_topic_attributes_metabox'
    342342     */
     
    353353
    354354    /**
    355      * Add the author info metabox
     355     * Add the author info meta-box
    356356     *
    357357     * @since 2.0.0 bbPress (r2828)
    358358     *
    359      * @uses add_meta_box() To add the metabox
     359     * @uses add_meta_box() To add the meta-box
    360360     */
    361361    public function author_metabox() {
     
    366366        }
    367367
    368         // Add the metabox
     368        // Add the meta-box
    369369        add_meta_box(
    370370            'bbp_author_metabox',
     
    378378
    379379    /**
    380      * Add the replies metabox
     380     * Add the replies meta-box
    381381     *
    382382     * Allows viewing & moderating of replies to a topic, based on the way
     
    389389     * @uses bbp_get_topic_post_type() To get the topic post type
    390390     * @uses bbp_get_reply_post_type() To get the reply post type
    391      * @uses add_meta_box() To add the metabox
     391     * @uses add_meta_box() To add the meta-box
    392392     * @uses do_action() Calls 'bbp_author_metabox' with the topic/reply
    393393     *                    id
     
    400400        }
    401401
    402         // Add the metabox
     402        // Add the meta-box
    403403        add_meta_box(
    404404            'bbp_topic_replies_metabox',
     
    412412
    413413    /**
    414      * Add the favorites metabox
     414     * Add the favorites meta-box
    415415     *
    416416     * Allows viewing of users who have favorited a topic.
     
    418418     * @since 2.6.0 bbPress (r6197)
    419419     *
    420      * @uses add_meta_box() To add the metabox
     420     * @uses add_meta_box() To add the meta-box
    421421     */
    422422    public function favorites_metabox() {
     
    432432        }
    433433
    434         // Add the metabox
     434        // Add the meta-box
    435435        add_meta_box(
    436436            'bbp_topic_favorites_metabox',
     
    444444
    445445    /**
    446      * Add the subscriptions metabox
     446     * Add the subscriptions meta-box
    447447     *
    448448     * Allows viewing of users who have subscribed to a topic.
     
    450450     * @since 2.6.0 bbPress (r6197)
    451451     *
    452      * @uses add_meta_box() To add the metabox
     452     * @uses add_meta_box() To add the meta-box
    453453     */
    454454    public function subscriptions_metabox() {
     
    464464        }
    465465
    466         // Add the metabox
     466        // Add the meta-box
    467467        add_meta_box(
    468468            'bbp_topic_subscriptions_metabox',
     
    476476
    477477    /**
    478      * Remove comments & discussion metaboxes if comments are not supported
     478     * Remove comments & discussion meta-boxes if comments are not supported
    479479     *
    480480     * @since 2.6.0 bbPress (r6186)
  • trunk/src/includes/extend/akismet.php

    r6250 r6272  
    759759
    760760    /**
    761      * Add Aksimet History metaboxes to topics and replies
     761     * Add Aksimet History meta-boxes to topics and replies
    762762     *
    763763     * @since 2.4.0 bbPress (r5049)
     
    787787
    788788    /**
    789      * Output for Akismet History metabox
     789     * Output for Akismet History meta-box
    790790     *
    791791     * @since 2.4.0 bbPress (r5049)
  • trunk/src/includes/extend/buddypress/groups.php

    r6253 r6272  
    9292        add_action( 'groups_before_delete_group',     array( $this, 'disconnect_forum_from_group'     ) );
    9393
    94         // Adds a bbPress metabox to the new BuddyPress Group Admin UI
     94        // Adds a bbPress meta-box to the new BuddyPress Group Admin UI
    9595        add_action( 'bp_groups_admin_meta_boxes',     array( $this, 'group_admin_ui_edit_screen'      ) );
    9696
     
    460460
    461461    /**
    462      * Adds a metabox to BuddyPress Group Admin UI
     462     * Adds a meta-box to BuddyPress Group Admin UI
    463463     *
    464464     * @since 2.3.0 bbPress (r4814)
     
    479479
    480480    /**
    481      * Displays the bbPress metabox in BuddyPress Group Admin UI
     481     * Displays the bbPress meta-box in BuddyPress Group Admin UI
    482482     *
    483483     * @since 2.3.0 bbPress (r4814)
Note: See TracChangeset for help on using the changeset viewer.