Ticket #2716: 2716.1.diff
File 2716.1.diff, 6.0 KB (added by , 10 years ago) |
---|
-
src/includes/admin/converters/phpBB.php
44 44 // Forum topic count (Stored in postmeta) 45 45 $this->field_map[] = array( 46 46 'from_tablename' => 'forums', 47 'from_fieldname' => 'forum_topics ',47 'from_fieldname' => 'forum_topics_approved', 48 48 'to_type' => 'forum', 49 49 'to_fieldname' => '_bbp_topic_count' 50 50 ); … … 52 52 // Forum reply count (Stored in postmeta) 53 53 $this->field_map[] = array( 54 54 'from_tablename' => 'forums', 55 'from_fieldname' => 'forum_posts ',55 'from_fieldname' => 'forum_posts_approved', 56 56 'to_type' => 'forum', 57 57 'to_fieldname' => '_bbp_reply_count' 58 58 ); … … 160 160 // Topic reply count (Stored in postmeta) 161 161 $this->field_map[] = array( 162 162 'from_tablename' => 'topics', 163 'from_fieldname' => 'topic_ replies',163 'from_fieldname' => 'topic_posts_approved', 164 164 'to_type' => 'topic', 165 165 'to_fieldname' => '_bbp_reply_count', 166 166 'callback_method' => 'callback_topic_reply_count' … … 169 169 // Topic total reply count (Includes unpublished replies, Stored in postmeta) 170 170 $this->field_map[] = array( 171 171 'from_tablename' => 'topics', 172 'from_fieldname' => 'topic_ replies_real',172 'from_fieldname' => 'topic_posts_approved', 173 173 'to_type' => 'topic', 174 174 'to_fieldname' => '_bbp_total_reply_count', 175 175 'callback_method' => 'callback_topic_reply_count' … … 448 448 $this->field_map[] = array( 449 449 'from_tablename' => 'users', 450 450 'from_fieldname' => 'user_id', 451 'from_expression' => 'WHERE user_type !=2',452 451 'to_type' => 'user', 453 452 'to_fieldname' => '_bbp_old_user_id' 454 453 ); … … 495 494 496 495 // User homepage. 497 496 $this->field_map[] = array( 498 'from_tablename' => 'users', 499 'from_fieldname' => 'user_website', 500 'to_type' => 'user', 501 'to_fieldname' => 'user_url' 497 'from_tablename' => 'profile_fields_data', 498 'from_fieldname' => 'pf_phpbb_website', 499 'join_tablename' => 'users', 500 'join_type' => 'LEFT', 501 'join_expression' => 'USING (user_id) WHERE users.user_type !=2', 502 'to_type' => 'user', 503 'to_fieldname' => 'user_url' 502 504 ); 503 505 504 506 // User registered. … … 510 512 'callback_method' => 'callback_datetime' 511 513 ); 512 514 513 // User A IM (Stored in usermeta)515 // User AOL/AIM (Stored in usermeta) 514 516 $this->field_map[] = array( 515 'from_tablename' => ' users',516 'from_fieldname' => ' user_aim',517 'from_tablename' => 'profile_fields_data', 518 'from_fieldname' => 'pf_phpbb_aol', 517 519 'to_type' => 'user', 518 520 'to_fieldname' => 'aim' 519 521 ); … … 520 522 521 523 // User Yahoo (Stored in usermeta) 522 524 $this->field_map[] = array( 523 'from_tablename' => ' users',524 'from_fieldname' => ' user_yim',525 'from_tablename' => 'profile_fields_data', 526 'from_fieldname' => 'pf_phpbb_yahoo', 525 527 'to_type' => 'user', 526 528 'to_fieldname' => 'yim' 527 529 ); … … 528 530 529 531 // Store ICQ (Stored in usermeta) 530 532 $this->field_map[] = array( 531 'from_tablename' => ' users',532 'from_fieldname' => ' user_icq',533 'from_tablename' => 'profile_fields_data', 534 'from_fieldname' => 'pf_phpbb_icq', 533 535 'to_type' => 'user', 534 536 'to_fieldname' => '_bbp_phpbb_user_icq' 535 537 ); 536 538 537 // Store MSN (Stored in usermeta)539 // Store MSN/WLM (Stored in usermeta) 538 540 $this->field_map[] = array( 539 'from_tablename' => ' users',540 'from_fieldname' => ' user_msnm',541 'from_tablename' => 'profile_fields_data', 542 'from_fieldname' => 'pf_phpbb_wlm', 541 543 'to_type' => 'user', 542 544 'to_fieldname' => '_bbp_phpbb_user_msnm' 543 545 ); 544 546 547 // Store Facebook (Stored in usermeta) 548 $this->field_map[] = array( 549 'from_tablename' => 'profile_fields_data', 550 'from_fieldname' => 'pf_phpbb_facebook', 551 'to_type' => 'user', 552 'to_fieldname' => '_bbp_phpbb_user_facebook' 553 ); 554 555 // Store Google+ (Stored in usermeta) 556 $this->field_map[] = array( 557 'from_tablename' => 'profile_fields_data', 558 'from_fieldname' => 'pf_phpbb_googleplus', 559 'to_type' => 'user', 560 'to_fieldname' => '_bbp_phpbb_user_googleplus' 561 ); 562 563 // Store Skype (Stored in usermeta) 564 $this->field_map[] = array( 565 'from_tablename' => 'profile_fields_data', 566 'from_fieldname' => 'pf_phpbb_skype', 567 'to_type' => 'user', 568 'to_fieldname' => '_bbp_phpbb_user_skype' 569 ); 570 571 // Store Twitter (Stored in usermeta) 572 $this->field_map[] = array( 573 'from_tablename' => 'profile_fields_data', 574 'from_fieldname' => 'pf_phpbb_twitter', 575 'to_type' => 'user', 576 'to_fieldname' => '_bbp_phpbb_user_twitter' 577 ); 578 579 // Store Youtube (Stored in usermeta) 580 $this->field_map[] = array( 581 'from_tablename' => 'profile_fields_data', 582 'from_fieldname' => 'pf_phpbb_youtube', 583 'to_type' => 'user', 584 'to_fieldname' => '_bbp_phpbb_user_youtube' 585 ); 586 545 587 // Store Jabber 546 588 $this->field_map[] = array( 547 589 'from_tablename' => 'users', … … 552 594 553 595 // Store Occupation (Stored in usermeta) 554 596 $this->field_map[] = array( 555 'from_tablename' => ' users',556 'from_fieldname' => ' user_occ',597 'from_tablename' => 'profile_fields_data', 598 'from_fieldname' => 'pf_phpbb_occupation', 557 599 'to_type' => 'user', 558 600 'to_fieldname' => '_bbp_phpbb_user_occ' 559 601 ); … … 560 602 561 603 // Store Interests (Stored in usermeta) 562 604 $this->field_map[] = array( 563 'from_tablename' => ' users',564 'from_fieldname' => ' user_interests',605 'from_tablename' => 'profile_fields_data', 606 'from_fieldname' => 'pf_phpbb_interests', 565 607 'to_type' => 'user', 566 608 'to_fieldname' => '_bbp_phpbb_user_interests' 567 609 ); … … 577 619 578 620 // Store Location (Stored in usermeta) 579 621 $this->field_map[] = array( 580 'from_tablename' => ' users',581 'from_fieldname' => ' user_from',622 'from_tablename' => 'profile_fields_data', 623 'from_fieldname' => 'pf_phpbb_location', 582 624 'to_type' => 'user', 583 625 'to_fieldname' => '_bbp_phpbb_user_from' 584 626 );