Changeset 5526
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- Location:
- trunk/src/includes/admin/converters
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/AEF.php
r5516 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forums', 31 31 'from_fieldname' => 'fid', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 148 148 /** Topic Section *****************************************************/ 149 149 150 // Topic id (Stored in postmeta)150 // Old topic id (Stored in postmeta) 151 151 $this->field_map[] = array( 152 152 'from_tablename' => 'topics', 153 153 'from_fieldname' => 'tid', 154 154 'to_type' => 'topic', 155 'to_fieldname' => '_bbp_ topic_id'155 'to_fieldname' => '_bbp_old_topic_id' 156 156 ); 157 157 … … 326 326 /** Reply Section *****************************************************/ 327 327 328 // Reply id (Stored in postmeta)328 // Old reply id (Stored in postmeta) 329 329 $this->field_map[] = array( 330 330 'from_tablename' => 'posts', 331 331 'from_fieldname' => 'pid', 332 332 'to_type' => 'reply', 333 'to_fieldname' => '_bbp_ post_id'333 'to_fieldname' => '_bbp_old_reply_id' 334 334 ); 335 335 -
trunk/src/includes/admin/converters/Drupal7.php
r5519 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'taxonomy_term_data', 31 31 'from_fieldname' => 'tid', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 118 118 /** Topic Section *****************************************************/ 119 119 120 // Topic id (Stored in postmeta)120 // Old topic id (Stored in postmeta) 121 121 $this->field_map[] = array( 122 122 'from_tablename' => 'forum_index', 123 123 'from_fieldname' => 'nid', 124 124 'to_type' => 'topic', 125 'to_fieldname' => '_bbp_ topic_id'125 'to_fieldname' => '_bbp_old_topic_id' 126 126 ); 127 127 … … 318 318 /** Reply Section *****************************************************/ 319 319 320 // Reply id (Stored in postmeta)320 // Old reply id (Stored in postmeta) 321 321 $this->field_map[] = array( 322 322 'from_tablename' => 'comment', 323 323 'from_fieldname' => 'cid', 324 324 'to_type' => 'reply', 325 'to_fieldname' => '_bbp_ post_id'325 'to_fieldname' => '_bbp_old_reply_id' 326 326 ); 327 327 -
trunk/src/includes/admin/converters/Example.php
r5520 r5526 28 28 // Setup table joins for the forum section at the base of this section 29 29 30 // Forum id (Stored in postmeta)30 // Old forum id (Stored in postmeta) 31 31 $this->field_map[] = array( 32 32 'from_tablename' => 'forums_table', 33 33 'from_fieldname' => 'the_forum_id', 34 34 'to_type' => 'forum', 35 'to_fieldname' => '_bbp_ forum_id'35 'to_fieldname' => '_bbp_old_forum_id' 36 36 ); 37 37 … … 165 165 // Setup table joins for the topic section at the base of this section 166 166 167 // Topic id (Stored in postmeta)167 // Old topic id (Stored in postmeta) 168 168 $this->field_map[] = array( 169 169 'from_tablename' => 'topics_table', 170 170 'from_fieldname' => 'the_topic_id', 171 171 'to_type' => 'topic', 172 'to_fieldname' => '_bbp_ topic_id'172 'to_fieldname' => '_bbp_old_topic_id' 173 173 ); 174 174 … … 378 378 // Setup table joins for the reply section at the base of this section 379 379 380 // Reply id (Stored in postmeta)380 // Old reply id (Stored in postmeta) 381 381 $this->field_map[] = array( 382 382 'from_tablename' => 'replies_table', 383 383 'from_fieldname' => 'the_reply_id', 384 384 'to_type' => 'reply', 385 'to_fieldname' => '_bbp_ post_id'385 'to_fieldname' => '_bbp_old_reply_id' 386 386 ); 387 387 -
trunk/src/includes/admin/converters/FluxBB.php
r5516 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forums', 31 31 'from_fieldname' => 'id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 138 138 /** Topic Section *****************************************************/ 139 139 140 // Topic id (Stored in postmeta)140 // Old topic id (Stored in postmeta) 141 141 $this->field_map[] = array( 142 142 'from_tablename' => 'topics', 143 143 'from_fieldname' => 'id', 144 144 'to_type' => 'topic', 145 'to_fieldname' => '_bbp_ topic_id'145 'to_fieldname' => '_bbp_old_topic_id' 146 146 ); 147 147 … … 300 300 /** Reply Section *****************************************************/ 301 301 302 // Reply id (Stored in postmeta)302 // Old reply id (Stored in postmeta) 303 303 $this->field_map[] = array( 304 304 'from_tablename' => 'posts', 305 305 'from_fieldname' => 'id', 306 306 'to_type' => 'reply', 307 'to_fieldname' => '_bbp_ post_id'307 'to_fieldname' => '_bbp_old_reply_id' 308 308 ); 309 309 -
trunk/src/includes/admin/converters/Invision.php
r5516 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forums', 31 31 'from_fieldname' => 'id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 148 148 /** Topic Section *****************************************************/ 149 149 150 // Topic id (Stored in postmeta)150 // Old topic id (Stored in postmeta) 151 151 $this->field_map[] = array( 152 152 'from_tablename' => 'topics', 153 153 'from_fieldname' => 'tid', 154 154 'to_type' => 'topic', 155 'to_fieldname' => '_bbp_ topic_id'155 'to_fieldname' => '_bbp_old_topic_id' 156 156 ); 157 157 … … 289 289 /** Reply Section *****************************************************/ 290 290 291 // Reply id (Stored in postmeta)291 // Old reply id (Stored in postmeta) 292 292 $this->field_map[] = array( 293 293 'from_tablename' => 'posts', 294 294 'from_fieldname' => 'pid', 295 295 'to_type' => 'reply', 296 'to_fieldname' => '_bbp_ post_id'296 'to_fieldname' => '_bbp_old_reply_id' 297 297 ); 298 298 -
trunk/src/includes/admin/converters/Kunena1.php
r5521 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'kunena_categories', 31 31 'from_fieldname' => 'id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 150 150 /** Topic Section *****************************************************/ 151 151 152 // Topic id (Stored in postmeta)152 // Old topic id (Stored in postmeta) 153 153 $this->field_map[] = array( 154 154 'from_tablename' => 'kunena_messages', 155 155 'from_fieldname' => 'thread', 156 156 'to_type' => 'topic', 157 'to_fieldname' => '_bbp_ topic_id'157 'to_fieldname' => '_bbp_old_topic_id' 158 158 ); 159 159 … … 277 277 /** Reply Section *****************************************************/ 278 278 279 // Reply id (Stored in postmeta)279 // Old reply id (Stored in postmeta) 280 280 $this->field_map[] = array( 281 281 'from_tablename' => 'kunena_messages', 282 282 'from_fieldname' => 'id', 283 283 'to_type' => 'reply', 284 'to_fieldname' => '_bbp_ post_id'284 'to_fieldname' => '_bbp_old_reply_id' 285 285 ); 286 286 -
trunk/src/includes/admin/converters/Kunena2.php
r5428 r5526 27 27 28 28 29 // Forum id (Stored in postmeta)29 // Old forum id (Stored in postmeta) 30 30 $this->field_map[] = array( 31 31 'from_tablename' => 'kunena_categories', 32 32 'from_fieldname' => 'id', 33 33 'to_type' => 'forum', 34 'to_fieldname' => '_bbp_ forum_id'34 'to_fieldname' => '_bbp_old_forum_id' 35 35 ); 36 36 … … 151 151 /** Topic Section *****************************************************/ 152 152 153 // Topic id (Stored in postmeta)153 // Old topic id (Stored in postmeta) 154 154 $this->field_map[] = array( 155 155 'from_tablename' => 'kunena_topics', 156 156 'from_fieldname' => 'id', 157 157 'to_type' => 'topic', 158 'to_fieldname' => '_bbp_ topic_id'158 'to_fieldname' => '_bbp_old_topic_id' 159 159 ); 160 160 … … 296 296 /** Reply Section *****************************************************/ 297 297 298 // Reply id (Stored in postmeta)298 // Old reply id (Stored in postmeta) 299 299 $this->field_map[] = array( 300 300 'from_tablename' => 'kunena_messages', 301 301 'from_fieldname' => 'id', 302 302 'to_type' => 'reply', 303 'to_fieldname' => '_bbp_ post_id'303 'to_fieldname' => '_bbp_old_reply_id' 304 304 ); 305 305 -
trunk/src/includes/admin/converters/Kunena3.php
r5428 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'kunena_categories', 31 31 'from_fieldname' => 'id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 150 150 /** Topic Section *****************************************************/ 151 151 152 // Topic id (Stored in postmeta)152 // Old topic id (Stored in postmeta) 153 153 $this->field_map[] = array( 154 154 'from_tablename' => 'kunena_topics', 155 155 'from_fieldname' => 'id', 156 156 'to_type' => 'topic', 157 'to_fieldname' => '_bbp_ topic_id'157 'to_fieldname' => '_bbp_old_topic_id' 158 158 ); 159 159 … … 295 295 /** Reply Section ******************************************************/ 296 296 297 // Reply id (Stored in postmeta)297 // Old reply id (Stored in postmeta) 298 298 $this->field_map[] = array( 299 299 'from_tablename' => 'kunena_messages', 300 300 'from_fieldname' => 'id', 301 301 'to_type' => 'reply', 302 'to_fieldname' => '_bbp_ post_id'302 'to_fieldname' => '_bbp_old_reply_id' 303 303 ); 304 304 -
trunk/src/includes/admin/converters/Mingle.php
r5516 r5526 26 26 /** Forum Section ******************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forum_forums', 31 31 'from_fieldname' => 'id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 113 113 /** Topic Section ******************************************************/ 114 114 115 // Topic id (Stored in postmeta)115 // Old topic id (Stored in postmeta) 116 116 $this->field_map[] = array( 117 117 'from_tablename' => 'forum_threads', 118 118 'from_fieldname' => 'id', 119 119 'to_type' => 'topic', 120 'to_fieldname' => '_bbp_ topic_id'120 'to_fieldname' => '_bbp_old_topic_id' 121 121 ); 122 122 … … 235 235 /** Reply Section ******************************************************/ 236 236 237 // Reply id (Stored in postmeta)237 // Old reply id (Stored in postmeta) 238 238 $this->field_map[] = array( 239 239 'from_tablename' => 'forum_posts', 240 240 'from_fieldname' => 'id', 241 241 'to_type' => 'reply', 242 'to_fieldname' => '_bbp_ post_id'242 'to_fieldname' => '_bbp_old_reply_id' 243 243 ); 244 244 -
trunk/src/includes/admin/converters/MyBB.php
r5516 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forums', 31 31 'from_fieldname' => 'fid', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 130 130 /** Topic Section *****************************************************/ 131 131 132 // Topic id (Stored in postmeta)132 // Old topic id (Stored in postmeta) 133 133 $this->field_map[] = array( 134 134 'from_tablename' => 'threads', 135 135 'from_fieldname' => 'tid', 136 136 'to_type' => 'topic', 137 'to_fieldname' => '_bbp_ topic_id'137 'to_fieldname' => '_bbp_old_topic_id' 138 138 ); 139 139 … … 287 287 /** Reply Section *****************************************************/ 288 288 289 // Reply id (Stored in postmeta)289 // Old reply id (Stored in postmeta) 290 290 $this->field_map[] = array( 291 291 'from_tablename' => 'posts', … … 293 293 'from_expression' => 'WHERE replyto != 0', 294 294 'to_type' => 'reply', 295 'to_fieldname' => '_bbp_ post_id'295 'to_fieldname' => '_bbp_old_reply_id' 296 296 ); 297 297 -
trunk/src/includes/admin/converters/PHPFox3.php
r5428 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forum', 31 31 'from_fieldname' => 'forum_id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 150 150 /** Topic Section *****************************************************/ 151 151 152 // Topic id (Stored in postmeta)152 // Old topic id (Stored in postmeta) 153 153 $this->field_map[] = array( 154 154 'from_tablename' => 'forum_thread', 155 155 'from_fieldname' => 'thread_id', 156 156 'to_type' => 'topic', 157 'to_fieldname' => '_bbp_ topic_id'157 'to_fieldname' => '_bbp_old_topic_id' 158 158 ); 159 159 … … 327 327 /** Reply Section *****************************************************/ 328 328 329 // Reply id (Stored in postmeta)329 // Old reply id (Stored in postmeta) 330 330 $this->field_map[] = array( 331 331 'from_tablename' => 'forum_post', 332 332 'from_fieldname' => 'post_id', 333 333 'to_type' => 'reply', 334 'to_fieldname' => '_bbp_ post_id'334 'to_fieldname' => '_bbp_old_reply_id' 335 335 ); 336 336 -
trunk/src/includes/admin/converters/PHPWind.php
r5516 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'bbs_forum', 31 31 'from_fieldname' => 'fid', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 163 163 /** Topic Section *****************************************************/ 164 164 165 // Topic id (Stored in postmeta)165 // Old topic id (Stored in postmeta) 166 166 $this->field_map[] = array( 167 167 'from_tablename' => 'bbs_threads', 168 168 'from_fieldname' => 'tid', 169 169 'to_type' => 'topic', 170 'to_fieldname' => '_bbp_ topic_id'170 'to_fieldname' => '_bbp_old_topic_id' 171 171 ); 172 172 … … 308 308 /** Reply Section *****************************************************/ 309 309 310 // Reply id (Stored in postmeta)310 // Old reply id (Stored in postmeta) 311 311 $this->field_map[] = array( 312 312 'from_tablename' => 'bbs_posts', 313 313 'from_fieldname' => 'pid', 314 314 'to_type' => 'reply', 315 'to_fieldname' => '_bbp_ post_id'315 'to_fieldname' => '_bbp_old_reply_id' 316 316 ); 317 317 -
trunk/src/includes/admin/converters/Phorum.php
r5522 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forums', 31 31 'from_fieldname' => 'forum_id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 132 132 /** Topic Section *****************************************************/ 133 133 134 // Topic id (Stored in postmeta)134 // Old topic id (Stored in postmeta) 135 135 $this->field_map[] = array( 136 136 'from_tablename' => 'messages', … … 138 138 'from_expression' => 'WHERE parent_id = 0', 139 139 'to_type' => 'topic', 140 'to_fieldname' => '_bbp_ topic_id'140 'to_fieldname' => '_bbp_old_topic_id' 141 141 ); 142 142 … … 274 274 /** Reply Section *****************************************************/ 275 275 276 // Reply id (Stored in postmeta)276 // Old reply id (Stored in postmeta) 277 277 $this->field_map[] = array( 278 278 'from_tablename' => 'messages', … … 280 280 'from_expression' => 'WHERE parent_id != 0', 281 281 'to_type' => 'reply', 282 'to_fieldname' => '_bbp_ post_id'282 'to_fieldname' => '_bbp_old_reply_id' 283 283 ); 284 284 -
trunk/src/includes/admin/converters/PunBB.php
r5516 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forums', 31 31 'from_fieldname' => 'id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 138 138 /** Topic Section *****************************************************/ 139 139 140 // Topic id (Stored in postmeta)140 // Old topic id (Stored in postmeta) 141 141 $this->field_map[] = array( 142 142 'from_tablename' => 'topics', 143 143 'from_fieldname' => 'id', 144 144 'to_type' => 'topic', 145 'to_fieldname' => '_bbp_ topic_id'145 'to_fieldname' => '_bbp_old_topic_id' 146 146 ); 147 147 … … 299 299 /** Reply Section *****************************************************/ 300 300 301 // Reply id (Stored in postmeta)301 // Old reply id (Stored in postmeta) 302 302 $this->field_map[] = array( 303 303 'from_tablename' => 'posts', 304 304 'from_fieldname' => 'id', 305 305 'to_type' => 'reply', 306 'to_fieldname' => '_bbp_ post_id'306 'to_fieldname' => '_bbp_old_reply_id' 307 307 ); 308 308 -
trunk/src/includes/admin/converters/SMF.php
r5516 r5526 26 26 /** Forum Section ******************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'boards', 31 31 'from_fieldname' => 'id_board', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 146 146 /** Topic Section ******************************************************/ 147 147 148 // Topic id (Stored in postmeta)148 // Old topic id (Stored in postmeta) 149 149 $this->field_map[] = array( 150 150 'from_tablename' => 'topics', 151 151 'from_fieldname' => 'id_topic', 152 152 'to_type' => 'topic', 153 'to_fieldname' => '_bbp_ topic_id'153 'to_fieldname' => '_bbp_old_topic_id' 154 154 ); 155 155 … … 324 324 /** Reply Section ******************************************************/ 325 325 326 // Reply id (Stored in postmeta)326 // Old reply id (Stored in postmeta) 327 327 $this->field_map[] = array( 328 328 'from_tablename' => 'messages', 329 329 'from_fieldname' => 'id_msg', 330 330 'to_type' => 'reply', 331 'to_fieldname' => '_bbp_ post_id'331 'to_fieldname' => '_bbp_old_reply_id' 332 332 ); 333 333 -
trunk/src/includes/admin/converters/SimplePress5.php
r5516 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'sfforums', 31 31 'from_fieldname' => 'forum_id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 146 146 /** Topic Section *****************************************************/ 147 147 148 // Topic id (Stored in postmeta)148 // Old topic id (Stored in postmeta) 149 149 $this->field_map[] = array( 150 150 'from_tablename' => 'sftopics', 151 151 'from_fieldname' => 'topic_id', 152 152 'to_type' => 'topic', 153 'to_fieldname' => '_bbp_ topic_id'153 'to_fieldname' => '_bbp_old_topic_id' 154 154 ); 155 155 … … 278 278 /** Reply Section *****************************************************/ 279 279 280 // Reply id (Stored in postmeta)280 // Old reply id (Stored in postmeta) 281 281 $this->field_map[] = array( 282 282 'from_tablename' => 'sfposts', 283 283 'from_fieldname' => 'post_id', 284 284 'to_type' => 'reply', 285 'to_fieldname' => '_bbp_ post_id'285 'to_fieldname' => '_bbp_old_reply_id' 286 286 ); 287 287 -
trunk/src/includes/admin/converters/Vanilla.php
r5523 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'Category', … … 32 32 'from_expression' => 'WHERE Category.CategoryID > 0', 33 33 'to_type' => 'forum', 34 'to_fieldname' => '_bbp_ forum_id'34 'to_fieldname' => '_bbp_old_forum_id' 35 35 ); 36 36 … … 152 152 /** Topic Section *****************************************************/ 153 153 154 // Topic id (Stored in postmeta)154 // Old topic id (Stored in postmeta) 155 155 $this->field_map[] = array( 156 156 'from_tablename' => 'Discussion', 157 157 'from_fieldname' => 'DiscussionID', 158 158 'to_type' => 'topic', 159 'to_fieldname' => '_bbp_ topic_id'159 'to_fieldname' => '_bbp_old_topic_id' 160 160 ); 161 161 … … 321 321 /** Reply Section *****************************************************/ 322 322 323 // Reply id (Stored in postmeta)323 // Old reply id (Stored in postmeta) 324 324 $this->field_map[] = array( 325 325 'from_tablename' => 'Comment', 326 326 'from_fieldname' => 'CommentID', 327 327 'to_type' => 'reply', 328 'to_fieldname' => '_bbp_ post_id'328 'to_fieldname' => '_bbp_old_reply_id' 329 329 ); 330 330 -
trunk/src/includes/admin/converters/XMB.php
r5516 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forums', 31 31 'from_fieldname' => 'fid', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 148 148 /** Topic Section *****************************************************/ 149 149 150 // Topic id (Stored in postmeta)150 // Old topic id (Stored in postmeta) 151 151 $this->field_map[] = array( 152 152 'from_tablename' => 'threads', 153 153 'from_fieldname' => 'tid', 154 154 'to_type' => 'topic', 155 'to_fieldname' => '_bbp_ topic_id'155 'to_fieldname' => '_bbp_old_topic_id' 156 156 ); 157 157 … … 326 326 /** Reply Section *****************************************************/ 327 327 328 // Reply id (Stored in postmeta)328 // Old reply id (Stored in postmeta) 329 329 $this->field_map[] = array( 330 330 'from_tablename' => 'posts', 331 331 'from_fieldname' => 'pid', 332 332 'to_type' => 'reply', 333 'to_fieldname' => '_bbp_ post_id'333 'to_fieldname' => '_bbp_old_reply_id' 334 334 ); 335 335 -
trunk/src/includes/admin/converters/XenForo.php
r5428 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'node', 31 31 'from_fieldname' => 'node_id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 171 171 /** Topic Section *****************************************************/ 172 172 173 // Topic id (Stored in postmeta)173 // Old topic id (Stored in postmeta) 174 174 $this->field_map[] = array( 175 175 'from_tablename' => 'thread', 176 176 'from_fieldname' => 'thread_id', 177 177 'to_type' => 'topic', 178 'to_fieldname' => '_bbp_ topic_id'178 'to_fieldname' => '_bbp_old_topic_id' 179 179 ); 180 180 … … 317 317 /** Reply Section *****************************************************/ 318 318 319 // Reply id (Stored in postmeta)319 // Old reply id (Stored in postmeta) 320 320 $this->field_map[] = array( 321 321 'from_tablename' => 'post', 322 322 'from_fieldname' => 'post_id', 323 323 'to_type' => 'reply', 324 'to_fieldname' => '_bbp_ post_id'324 'to_fieldname' => '_bbp_old_reply_id' 325 325 ); 326 326 -
trunk/src/includes/admin/converters/bbPress1.php
r5517 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forums', 31 31 'from_fieldname' => 'forum_id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 151 151 /** Topic Section *****************************************************/ 152 152 153 // Topic id (Stored in postmeta)153 // Old topic id (Stored in postmeta) 154 154 $this->field_map[] = array( 155 155 'from_tablename' => 'topics', 156 156 'from_fieldname' => 'topic_id', 157 157 'to_type' => 'topic', 158 'to_fieldname' => '_bbp_ topic_id'158 'to_fieldname' => '_bbp_old_topic_id' 159 159 ); 160 160 … … 355 355 /** Reply Section *****************************************************/ 356 356 357 // Reply id (Stored in postmeta)357 // Old reply id (Stored in postmeta) 358 358 $this->field_map[] = array( 359 359 'from_tablename' => 'posts', 360 360 'from_fieldname' => 'post_id', 361 361 'to_type' => 'reply', 362 'to_fieldname' => '_bbp_ post_id'362 'to_fieldname' => '_bbp_old_reply_id' 363 363 ); 364 364 -
trunk/src/includes/admin/converters/e107v1.php
r5516 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forum', 31 31 'from_fieldname' => 'forum_id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 148 148 /** Topic Section *****************************************************/ 149 149 150 // Topic id (Stored in postmeta)150 // Old topic id (Stored in postmeta) 151 151 $this->field_map[] = array( 152 152 'from_tablename' => 'forum_t', … … 154 154 'from_expression' => 'WHERE thread_parent = 0', 155 155 'to_type' => 'topic', 156 'to_fieldname' => '_bbp_ topic_id'156 'to_fieldname' => '_bbp_old_topic_id' 157 157 ); 158 158 … … 292 292 /** Reply Section *****************************************************/ 293 293 294 // Reply id (Stored in postmeta)294 // Old reply id (Stored in postmeta) 295 295 $this->field_map[] = array( 296 296 'from_tablename' => 'forum_t', … … 298 298 'from_expression' => 'WHERE thread_parent != 0', 299 299 'to_type' => 'reply', 300 'to_fieldname' => '_bbp_ post_id'300 'to_fieldname' => '_bbp_old_reply_id' 301 301 ); 302 302 -
trunk/src/includes/admin/converters/phpBB.php
r5524 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forums', 31 31 'from_fieldname' => 'forum_id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 150 150 /** Topic Section *****************************************************/ 151 151 152 // Topic id (Stored in postmeta)152 // Old topic id (Stored in postmeta) 153 153 $this->field_map[] = array( 154 154 'from_tablename' => 'topics', 155 155 'from_fieldname' => 'topic_id', 156 156 'to_type' => 'topic', 157 'to_fieldname' => '_bbp_ topic_id'157 'to_fieldname' => '_bbp_old_topic_id' 158 158 ); 159 159 … … 307 307 /** Reply Section *****************************************************/ 308 308 309 // Reply id (Stored in postmeta)309 // Old reply id (Stored in postmeta) 310 310 $this->field_map[] = array( 311 311 'from_tablename' => 'posts', 312 312 'from_fieldname' => 'post_id', 313 313 'to_type' => 'reply', 314 'to_fieldname' => '_bbp_ post_id'314 'to_fieldname' => '_bbp_old_reply_id' 315 315 ); 316 316 -
trunk/src/includes/admin/converters/vBulletin.php
r5516 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forum', 31 31 'from_fieldname' => 'forumid', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 148 148 /** Topic Section *****************************************************/ 149 149 150 // Topic id (Stored in postmeta)150 // Old topic id (Stored in postmeta) 151 151 $this->field_map[] = array( 152 152 'from_tablename' => 'thread', 153 153 'from_fieldname' => 'threadid', 154 154 'to_type' => 'topic', 155 'to_fieldname' => '_bbp_ topic_id'155 'to_fieldname' => '_bbp_old_topic_id' 156 156 ); 157 157 … … 342 342 /** Reply Section *****************************************************/ 343 343 344 // Reply id (Stored in postmeta)344 // Old reply id (Stored in postmeta) 345 345 $this->field_map[] = array( 346 346 'from_tablename' => 'post', 347 347 'from_fieldname' => 'postid', 348 348 'to_type' => 'reply', 349 'to_fieldname' => '_bbp_ post_id'349 'to_fieldname' => '_bbp_old_reply_id' 350 350 ); 351 351 -
trunk/src/includes/admin/converters/vBulletin3.php
r5516 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'forum', 31 31 'from_fieldname' => 'forumid', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 148 148 /** Topic Section *****************************************************/ 149 149 150 // Topic id (Stored in postmeta)150 // Old topic id (Stored in postmeta) 151 151 $this->field_map[] = array( 152 152 'from_tablename' => 'thread', 153 153 'from_fieldname' => 'threadid', 154 154 'to_type' => 'topic', 155 'to_fieldname' => '_bbp_ topic_id'155 'to_fieldname' => '_bbp_old_topic_id' 156 156 ); 157 157 … … 342 342 /** Reply Section *****************************************************/ 343 343 344 // Reply id (Stored in postmeta)344 // Old reply id (Stored in postmeta) 345 345 $this->field_map[] = array( 346 346 'from_tablename' => 'post', 347 347 'from_fieldname' => 'postid', 348 348 'to_type' => 'reply', 349 'to_fieldname' => '_bbp_ post_id'349 'to_fieldname' => '_bbp_old_reply_id' 350 350 ); 351 351
Note: See TracChangeset
for help on using the changeset viewer.