Skip to:
Content

bbPress.org

Changeset 4272


Ignore:
Timestamp:
10/29/2012 12:28:11 PM (12 years ago)
Author:
johnjamesjacoby
Message:

vBulletin Converter:

  • Update inline docs
  • See #1991.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/admin/converters/vBulletin.php

    r4271 r4272  
    2525        /** Forum Section *****************************************************/
    2626
    27         // Forum id. Stored in postmeta.
     27        // Forum id (Stored in postmeta)
    2828        $this->field_map[] = array(
    2929            'from_tablename' => 'forum',
     
    3333        );
    3434
    35         // Forum parent id.  If no parent, than 0. Stored in postmeta.
     35        // Forum parent id (If no parent, than 0. Stored in postmeta)
    3636        $this->field_map[] = array(
    3737            'from_tablename' => 'forum',
     
    4949        );
    5050
    51         // Forum slug. Clean name.
     51        // Forum slug (Clean name to avoid confilcts)
    5252        $this->field_map[] = array(
    5353            'from_tablename'  => 'forum',
     
    6767        );
    6868
    69         // Forum display order.  Starts from 1.
     69        // Forum display order (Starts from 1)
    7070        $this->field_map[] = array(
    7171            'from_tablename' => 'forum',
     
    9999        /** Topic Section *****************************************************/
    100100
    101         // Topic id. Stored in postmeta.
     101        // Topic id (Stored in postmeta)
    102102        $this->field_map[] = array(
    103103            'from_tablename' => 'thread',
     
    107107        );
    108108
    109         // Forum id. Stored in postmeta.
     109        // Forum id (Stored in postmeta)
    110110        $this->field_map[] = array(
    111111            'from_tablename'  => 'thread',
     
    133133        );
    134134
    135         // Topic slug. Clean name.
     135        // Topic slug (Clean name to avoid conflicts)
    136136        $this->field_map[] = array(
    137137            'from_tablename'  => 'thread',
     
    142142        );
    143143
    144         // Forum id.  If no parent, than 0.
     144        // Forum id (If no parent, than 0)
    145145        $this->field_map[] = array(
    146146            'from_tablename'  => 'thread',
     
    152152
    153153        // Topic content.
     154        // Note: We join the posts table because topics do not have content.
    154155        $this->field_map[] = array(
    155156            'from_tablename'  => 'post',
     
    217218        /** Post Section ******************************************************/
    218219
    219         // Post id. Stores in postmeta.
     220        // Post id (Stores in postmeta)
    220221        $this->field_map[] = array(
    221222            'from_tablename'  => 'post',
     
    226227        );
    227228
    228         // Forum id. Stores in postmeta.
     229        // Forum id (Stores in postmeta)
    229230        $this->field_map[] = array(
    230231            'from_tablename'  => 'post',
     
    235236        );
    236237
    237         // Topic id. Stores in postmeta.
     238        // Topic id (Stores in postmeta)
    238239        $this->field_map[] = array(
    239240            'from_tablename'  => 'post',
     
    269270        );
    270271
    271         // Topic slug. Clean name.
     272        // Topic slug (Clean name)
    272273        $this->field_map[] = array(
    273274            'from_tablename'  => 'post',
     
    287288        );
    288289
    289         // Topic id. If no parent, than 0.
     290        // Topic id (If no parent, than 0)
    290291        $this->field_map[] = array(
    291292            'from_tablename'  => 'post',
     
    328329        /** User Section ******************************************************/
    329330
    330         // Store old User id. Stores in usermeta.
     331        // Store old User id (Stores in usermeta)
    331332        $this->field_map[] = array(
    332333            'from_tablename' => 'user',
     
    336337        );
    337338
    338         // Store old User password. Stores in usermeta serialized with salt.
     339        // Store old User password (Stores in usermeta serialized with salt)
    339340        $this->field_map[] = array(
    340341            'from_tablename'  => 'user',
     
    345346        );
    346347
    347         // Store old User Salt. This is only used for the SELECT row info for
    348         // the above password save.
     348        // Store old User Salt (This is only used for the SELECT row info for
     349        // the above password save)
    349350        $this->field_map[] = array(
    350351            'from_tablename' => 'user',
     
    354355        );
    355356
    356         // User password verify class. Stores in usermeta for verifying password.
     357        // User password verify class (Stores in usermeta for verifying password)
    357358        $this->field_map[] = array(
    358359            'to_type'      => 'user',
     
    367368            'to_type'        => 'user',
    368369            'to_fieldname'   => 'user_login'
     370        );
     371
     372        // User nice name.
     373        $this->field_map[] = array(
     374            'from_tablename' => 'user',
     375            'from_fieldname' => 'user_nicename',
     376            'to_type'        => 'user',
     377            'to_fieldname'   => 'user_nicename'
    369378        );
    370379
Note: See TracChangeset for help on using the changeset viewer.