Changeset 5516
- Timestamp:
- 09/13/2014 01:56:43 AM (11 years ago)
- Location:
- trunk/src/includes/admin/converters
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/AEF.php
r5428 r5516 108 108 ); 109 109 110 // Forum type (Set a default value 'forum', Stored in postmeta) 111 $this->field_map[] = array( 112 'to_type' => 'forum', 113 'to_fieldname' => '_bbp_forum_type', 114 'default' => 'forum' 115 ); 116 110 117 // Forum status (Unlocked = 1 or Locked = 0, Stored in postmeta) 111 118 $this->field_map[] = array( -
trunk/src/includes/admin/converters/Drupal7.php
r5428 r5516 80 80 ); 81 81 82 // Forum type (Set a default value 'forum', Stored in postmeta) 83 $this->field_map[] = array( 84 'to_type' => 'forum', 85 'to_fieldname' => '_bbp_forum_type', 86 'default' => 'forum' 87 ); 88 89 // Forum status (Set a default value 'open', Stored in postmeta) 90 $this->field_map[] = array( 91 'to_type' => 'forum', 92 'to_fieldname' => '_bbp_status', 93 'default' => 'open' 94 ); 95 82 96 // Forum dates. 83 97 $this->field_map[] = array( -
trunk/src/includes/admin/converters/FluxBB.php
r5427 r5516 100 100 ); 101 101 102 // Forum type (Set a default value 'forum', Stored in postmeta) 103 $this->field_map[] = array( 104 'to_type' => 'forum', 105 'to_fieldname' => '_bbp_forum_type', 106 'default' => 'forum' 107 ); 108 109 // Forum status (Set a default value 'open', Stored in postmeta) 110 $this->field_map[] = array( 111 'to_type' => 'forum', 112 'to_fieldname' => '_bbp_status', 113 'default' => 'open' 114 ); 115 102 116 // Forum dates. 103 117 $this->field_map[] = array( -
trunk/src/includes/admin/converters/Invision.php
r5428 r5516 115 115 'to_fieldname' => '_bbp_forum_type', 116 116 'callback_method' => 'callback_forum_type' 117 ); 118 119 // Forum status (Set a default value 'open', Stored in postmeta) 120 $this->field_map[] = array( 121 'to_type' => 'forum', 122 'to_fieldname' => '_bbp_status', 123 'default' => 'open' 117 124 ); 118 125 -
trunk/src/includes/admin/converters/Mingle.php
r5428 r5516 73 73 'to_type' => 'forum', 74 74 'to_fieldname' => 'menu_order' 75 ); 76 77 // Forum type (Set a default value 'forum', Stored in postmeta) 78 $this->field_map[] = array( 79 'to_type' => 'forum', 80 'to_fieldname' => '_bbp_forum_type', 81 'default' => 'forum' 82 ); 83 84 // Forum status (Set a default value 'open', Stored in postmeta) 85 $this->field_map[] = array( 86 'to_type' => 'forum', 87 'to_fieldname' => '_bbp_status', 88 'default' => 'open' 75 89 ); 76 90 -
trunk/src/includes/admin/converters/MyBB.php
r5428 r5516 92 92 ); 93 93 94 // Forum type (Set a default value 'forum', Stored in postmeta) 95 $this->field_map[] = array( 96 'to_type' => 'forum', 97 'to_fieldname' => '_bbp_forum_type', 98 'default' => 'forum' 99 ); 100 101 // Forum status (Set a default value 'open', Stored in postmeta) 102 $this->field_map[] = array( 103 'to_type' => 'forum', 104 'to_fieldname' => '_bbp_status', 105 'default' => 'open' 106 ); 107 94 108 // Forum dates. 95 109 $this->field_map[] = array( -
trunk/src/includes/admin/converters/PHPWind.php
r5428 r5516 133 133 ); 134 134 135 // Forum status (Set a default value 'open', Stored in postmeta) 136 $this->field_map[] = array( 137 'to_type' => 'forum', 138 'to_fieldname' => '_bbp_status', 139 'default' => 'open' 140 ); 135 141 // Forum dates. 136 142 $this->field_map[] = array( -
trunk/src/includes/admin/converters/Phorum.php
r5428 r5516 101 101 ); 102 102 103 // Forum status (Set a default value 'open', Stored in postmeta) 104 $this->field_map[] = array( 105 'to_type' => 'forum', 106 'to_fieldname' => '_bbp_status', 107 'default' => 'open' 108 ); 109 103 110 // Forum dates. 104 111 $this->field_map[] = array( -
trunk/src/includes/admin/converters/PunBB.php
r5427 r5516 100 100 ); 101 101 102 // Forum type (Set a default value 'forum', Stored in postmeta) 103 $this->field_map[] = array( 104 'to_type' => 'forum', 105 'to_fieldname' => '_bbp_forum_type', 106 'default' => 'forum' 107 ); 108 109 // Forum status (Set a default value 'open', Stored in postmeta) 110 $this->field_map[] = array( 111 'to_type' => 'forum', 112 'to_fieldname' => '_bbp_status', 113 'default' => 'open' 114 ); 115 102 116 // Forum dates. 103 117 $this->field_map[] = array( -
trunk/src/includes/admin/converters/SMF.php
r5428 r5516 106 106 'to_type' => 'forum', 107 107 'to_fieldname' => 'menu_order' 108 ); 109 110 // Forum type (Set a default value 'forum', Stored in postmeta) 111 $this->field_map[] = array( 112 'to_type' => 'forum', 113 'to_fieldname' => '_bbp_forum_type', 114 'default' => 'forum' 115 ); 116 117 // Forum status (Set a default value 'open', Stored in postmeta) 118 $this->field_map[] = array( 119 'to_type' => 'forum', 120 'to_fieldname' => '_bbp_status', 121 'default' => 'open' 108 122 ); 109 123 -
trunk/src/includes/admin/converters/SimplePress5.php
r5428 r5516 106 106 'to_type' => 'forum', 107 107 'to_fieldname' => 'menu_order' 108 ); 109 110 // Forum type (Set a default value 'forum', Stored in postmeta) 111 $this->field_map[] = array( 112 'to_type' => 'forum', 113 'to_fieldname' => '_bbp_forum_type', 114 'default' => 'forum' 115 ); 116 117 // Forum status (Set a default value 'open', Stored in postmeta) 118 $this->field_map[] = array( 119 'to_type' => 'forum', 120 'to_fieldname' => '_bbp_status', 121 'default' => 'open' 108 122 ); 109 123 -
trunk/src/includes/admin/converters/Vanilla.php
r5428 r5516 108 108 'to_type' => 'forum', 109 109 'to_fieldname' => 'menu_order' 110 ); 111 112 // Forum type (Set a default value 'forum', Stored in postmeta) 113 $this->field_map[] = array( 114 'to_type' => 'forum', 115 'to_fieldname' => '_bbp_forum_type', 116 'default' => 'forum' 117 ); 118 119 // Forum status (Set a default value 'open', Stored in postmeta) 120 $this->field_map[] = array( 121 'to_type' => 'forum', 122 'to_fieldname' => '_bbp_status', 123 'default' => 'open' 110 124 ); 111 125 -
trunk/src/includes/admin/converters/XMB.php
r5428 r5516 117 117 ); 118 118 119 // Forum status (Set a default value 'open', Stored in postmeta) 120 $this->field_map[] = array( 121 'to_type' => 'forum', 122 'to_fieldname' => '_bbp_status', 123 'default' => 'open' 124 ); 125 119 126 // Forum dates. 120 127 $this->field_map[] = array( -
trunk/src/includes/admin/converters/bbPress1.php
r5428 r5516 120 120 ); 121 121 122 // Forum status (Set a default value 'open', Stored in postmeta) 123 $this->field_map[] = array( 124 'to_type' => 'forum', 125 'to_fieldname' => '_bbp_status', 126 'default' => 'open' 127 ); 128 122 129 // Forum dates. 123 130 $this->field_map[] = array( -
trunk/src/includes/admin/converters/e107v1.php
r5428 r5516 115 115 'to_fieldname' => '_bbp_forum_type', 116 116 'callback_method' => 'callback_forum_type' 117 ); 118 119 // Forum status (Set a default value 'open', Stored in postmeta) 120 $this->field_map[] = array( 121 'to_type' => 'forum', 122 'to_fieldname' => '_bbp_status', 123 'default' => 'open' 117 124 ); 118 125 -
trunk/src/includes/admin/converters/vBulletin.php
r5428 r5516 115 115 'to_fieldname' => '_bbp_forum_type', 116 116 'callback_method' => 'callback_forum_type' 117 ); 118 119 // Forum status (Set a default value 'open', Stored in postmeta) 120 $this->field_map[] = array( 121 'to_type' => 'forum', 122 'to_fieldname' => '_bbp_status', 123 'default' => 'open' 117 124 ); 118 125 -
trunk/src/includes/admin/converters/vBulletin3.php
r5428 r5516 115 115 'to_fieldname' => '_bbp_forum_type', 116 116 'callback_method' => 'callback_forum_type' 117 ); 118 119 // Forum status (Set a default value 'open', Stored in postmeta) 120 $this->field_map[] = array( 121 'to_type' => 'forum', 122 'to_fieldname' => '_bbp_status', 123 'default' => 'open' 117 124 ); 118 125
Note: See TracChangeset
for help on using the changeset viewer.