Changeset 4272
- Timestamp:
- 10/29/2012 12:28:11 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/admin/converters/vBulletin.php
r4271 r4272 25 25 /** Forum Section *****************************************************/ 26 26 27 // Forum id . Stored in postmeta.27 // Forum id (Stored in postmeta) 28 28 $this->field_map[] = array( 29 29 'from_tablename' => 'forum', … … 33 33 ); 34 34 35 // Forum parent id . If no parent, than 0. Stored in postmeta.35 // Forum parent id (If no parent, than 0. Stored in postmeta) 36 36 $this->field_map[] = array( 37 37 'from_tablename' => 'forum', … … 49 49 ); 50 50 51 // Forum slug . Clean name.51 // Forum slug (Clean name to avoid confilcts) 52 52 $this->field_map[] = array( 53 53 'from_tablename' => 'forum', … … 67 67 ); 68 68 69 // Forum display order . Starts from 1.69 // Forum display order (Starts from 1) 70 70 $this->field_map[] = array( 71 71 'from_tablename' => 'forum', … … 99 99 /** Topic Section *****************************************************/ 100 100 101 // Topic id . Stored in postmeta.101 // Topic id (Stored in postmeta) 102 102 $this->field_map[] = array( 103 103 'from_tablename' => 'thread', … … 107 107 ); 108 108 109 // Forum id . Stored in postmeta.109 // Forum id (Stored in postmeta) 110 110 $this->field_map[] = array( 111 111 'from_tablename' => 'thread', … … 133 133 ); 134 134 135 // Topic slug . Clean name.135 // Topic slug (Clean name to avoid conflicts) 136 136 $this->field_map[] = array( 137 137 'from_tablename' => 'thread', … … 142 142 ); 143 143 144 // Forum id . If no parent, than 0.144 // Forum id (If no parent, than 0) 145 145 $this->field_map[] = array( 146 146 'from_tablename' => 'thread', … … 152 152 153 153 // Topic content. 154 // Note: We join the posts table because topics do not have content. 154 155 $this->field_map[] = array( 155 156 'from_tablename' => 'post', … … 217 218 /** Post Section ******************************************************/ 218 219 219 // Post id . Stores in postmeta.220 // Post id (Stores in postmeta) 220 221 $this->field_map[] = array( 221 222 'from_tablename' => 'post', … … 226 227 ); 227 228 228 // Forum id . Stores in postmeta.229 // Forum id (Stores in postmeta) 229 230 $this->field_map[] = array( 230 231 'from_tablename' => 'post', … … 235 236 ); 236 237 237 // Topic id . Stores in postmeta.238 // Topic id (Stores in postmeta) 238 239 $this->field_map[] = array( 239 240 'from_tablename' => 'post', … … 269 270 ); 270 271 271 // Topic slug . Clean name.272 // Topic slug (Clean name) 272 273 $this->field_map[] = array( 273 274 'from_tablename' => 'post', … … 287 288 ); 288 289 289 // Topic id . If no parent, than 0.290 // Topic id (If no parent, than 0) 290 291 $this->field_map[] = array( 291 292 'from_tablename' => 'post', … … 328 329 /** User Section ******************************************************/ 329 330 330 // Store old User id . Stores in usermeta.331 // Store old User id (Stores in usermeta) 331 332 $this->field_map[] = array( 332 333 'from_tablename' => 'user', … … 336 337 ); 337 338 338 // Store old User password . Stores in usermeta serialized with salt.339 // Store old User password (Stores in usermeta serialized with salt) 339 340 $this->field_map[] = array( 340 341 'from_tablename' => 'user', … … 345 346 ); 346 347 347 // Store old User Salt .This is only used for the SELECT row info for348 // the above password save .348 // Store old User Salt (This is only used for the SELECT row info for 349 // the above password save) 349 350 $this->field_map[] = array( 350 351 'from_tablename' => 'user', … … 354 355 ); 355 356 356 // User password verify class . Stores in usermeta for verifying password.357 // User password verify class (Stores in usermeta for verifying password) 357 358 $this->field_map[] = array( 358 359 'to_type' => 'user', … … 367 368 'to_type' => 'user', 368 369 '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' 369 378 ); 370 379
Note: See TracChangeset
for help on using the changeset viewer.