Skip to:
Content

bbPress.org


Ignore:
Timestamp:
10/28/2015 04:07:50 AM (11 years ago)
Author:
netweb
Message:

Standardize @since PHPDoc tags style and format

This changeset updates the style and formatting of all of our @since instances for compatibility with phpDocumentor 2 and WP-Parser as we move toward implementing the bbPress developer code reference.

Props thebrandonallen
Fixes #2879

File:
1 edited

Legend:

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

    r5829 r5951  
    2121         * The main bbPress Converter loader
    2222         *
    23          * @since bbPress (r3813)
     23         * @since 2.1.0 bbPress (r3813)
     24         *
    2425         * @uses BBP_Converter::includes() Include the required files
    2526         * @uses BBP_Converter::setup_actions() Setup the actions
     
    5960         * Setup the default actions
    6061         *
    61          * @since bbPress (r3813)
     62         * @since 2.1.0 bbPress (r3813)
     63         *
    6264         * @uses add_action() To add various actions
    6365         */
     
    7779         * Register the settings
    7880         *
    79          * @since bbPress (r3813)
     81         * @since 2.1.0 bbPress (r3813)
     82         *
    8083         * @uses add_settings_section() To add our own settings section
    8184         * @uses add_settings_field() To add various settings fields
     
    142145         * Admin scripts
    143146         *
    144          * @since bbPress (r3813)
     147         * @since 2.1.0 bbPress (r3813)
    145148         */
    146149        public function admin_head() { ?>
     
    279282         * Wrap the converter output in paragraph tags, so styling can be applied
    280283         *
    281          * @since bbPress (r4052)
     284         * @since 2.1.0 bbPress (r4052)
    282285         *
    283286         * @param string $output
     
    300303         * Callback processor
    301304         *
    302          * @since bbPress (r3813)
     305         * @since 2.1.0 bbPress (r3813)
    303306         */
    304307        public function process_callback() {
     
    627630         * Create Tables for fast syncing
    628631         *
    629          * @since bbPress (r3813)
     632         * @since 2.1.0 bbPress (r3813)
    630633         */
    631634        public function sync_table( $drop = false ) {
     
    666669 * Base class to be extended by specific individual importers
    667670 *
    668  * @since bbPress (r3813)
     671 * @since 2.1.0 bbPress (r3813)
    669672 */
    670673abstract class BBP_Converter_Base {
     
    12741277         * This method converts old topic stickies to new bbPress stickies.
    12751278         *
    1276          * @since bbPress (r5170)
     1279         * @since 2.5.0 bbPress (r5170)
    12771280         *
    12781281         * @uses WPDB $wpdb
     
    13051308         * This method converts old topic super stickies to new bbPress super stickies.
    13061309         *
    1307          * @since bbPress (r5170)
     1310         * @since 2.5.0 bbPress (r5170)
    13081311         *
    13091312         * @uses WPDB $wpdb
     
    13371340         * This method converts old closed topics to bbPress closed topics.
    13381341         *
    1339          * @since bbPress (r5425)
     1342         * @since 2.6.0 bbPress (r5425)
    13401343         *
    13411344         * @uses bbp_close_topic() to close topics properly
     
    13671370         * This method converts old reply_to post id to new bbPress reply_to post id.
    13681371         *
    1369          * @since bbPress (r5093)
     1372         * @since 2.4.0 bbPress (r5093)
    13701373         */
    13711374        public function convert_reply_to_parents( $start ) {
     
    13951398         * This method converts anonymous topics.
    13961399         *
    1397          * @since bbPress (r5538)
     1400         * @since 2.6.0 bbPress (r5538)
    13981401         *
    13991402         * @uses add_post_meta() To add _bbp_anonymous_name topic meta key
     
    14411444         * This method converts anonymous replies.
    14421445         *
    1443          * @since bbPress (r5538)
     1446         * @since 2.6.0 bbPress (r5538)
    14441447         *
    14451448         * @uses add_post_meta() To add _bbp_anonymous_name reply meta key
     
    16731676         * A mini cache system to reduce database calls to reply_to post id.
    16741677         *
    1675          * @since bbPress (r5093)
     1678         * @since 2.4.0 bbPress (r5093)
    16761679         *
    16771680         * @param string $field
     
    17251728         * Check if the topic or reply author is anonymous
    17261729         *
    1727          * @since (r5544)
     1730         * @since 2.6.0 bbPress (r5544)
    17281731         *
    17291732         * @param  string $field
Note: See TracChangeset for help on using the changeset viewer.