Changeset 5951 for trunk/src/includes/admin/converter.php
- Timestamp:
- 10/28/2015 04:07:50 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/admin/converter.php (modified) (16 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converter.php
r5829 r5951 21 21 * The main bbPress Converter loader 22 22 * 23 * @since bbPress (r3813) 23 * @since 2.1.0 bbPress (r3813) 24 * 24 25 * @uses BBP_Converter::includes() Include the required files 25 26 * @uses BBP_Converter::setup_actions() Setup the actions … … 59 60 * Setup the default actions 60 61 * 61 * @since bbPress (r3813) 62 * @since 2.1.0 bbPress (r3813) 63 * 62 64 * @uses add_action() To add various actions 63 65 */ … … 77 79 * Register the settings 78 80 * 79 * @since bbPress (r3813) 81 * @since 2.1.0 bbPress (r3813) 82 * 80 83 * @uses add_settings_section() To add our own settings section 81 84 * @uses add_settings_field() To add various settings fields … … 142 145 * Admin scripts 143 146 * 144 * @since bbPress (r3813)147 * @since 2.1.0 bbPress (r3813) 145 148 */ 146 149 public function admin_head() { ?> … … 279 282 * Wrap the converter output in paragraph tags, so styling can be applied 280 283 * 281 * @since bbPress (r4052)284 * @since 2.1.0 bbPress (r4052) 282 285 * 283 286 * @param string $output … … 300 303 * Callback processor 301 304 * 302 * @since bbPress (r3813)305 * @since 2.1.0 bbPress (r3813) 303 306 */ 304 307 public function process_callback() { … … 627 630 * Create Tables for fast syncing 628 631 * 629 * @since bbPress (r3813)632 * @since 2.1.0 bbPress (r3813) 630 633 */ 631 634 public function sync_table( $drop = false ) { … … 666 669 * Base class to be extended by specific individual importers 667 670 * 668 * @since bbPress (r3813)671 * @since 2.1.0 bbPress (r3813) 669 672 */ 670 673 abstract class BBP_Converter_Base { … … 1274 1277 * This method converts old topic stickies to new bbPress stickies. 1275 1278 * 1276 * @since bbPress (r5170)1279 * @since 2.5.0 bbPress (r5170) 1277 1280 * 1278 1281 * @uses WPDB $wpdb … … 1305 1308 * This method converts old topic super stickies to new bbPress super stickies. 1306 1309 * 1307 * @since bbPress (r5170)1310 * @since 2.5.0 bbPress (r5170) 1308 1311 * 1309 1312 * @uses WPDB $wpdb … … 1337 1340 * This method converts old closed topics to bbPress closed topics. 1338 1341 * 1339 * @since bbPress (r5425)1342 * @since 2.6.0 bbPress (r5425) 1340 1343 * 1341 1344 * @uses bbp_close_topic() to close topics properly … … 1367 1370 * This method converts old reply_to post id to new bbPress reply_to post id. 1368 1371 * 1369 * @since bbPress (r5093)1372 * @since 2.4.0 bbPress (r5093) 1370 1373 */ 1371 1374 public function convert_reply_to_parents( $start ) { … … 1395 1398 * This method converts anonymous topics. 1396 1399 * 1397 * @since bbPress (r5538)1400 * @since 2.6.0 bbPress (r5538) 1398 1401 * 1399 1402 * @uses add_post_meta() To add _bbp_anonymous_name topic meta key … … 1441 1444 * This method converts anonymous replies. 1442 1445 * 1443 * @since bbPress (r5538)1446 * @since 2.6.0 bbPress (r5538) 1444 1447 * 1445 1448 * @uses add_post_meta() To add _bbp_anonymous_name reply meta key … … 1673 1676 * A mini cache system to reduce database calls to reply_to post id. 1674 1677 * 1675 * @since bbPress (r5093)1678 * @since 2.4.0 bbPress (r5093) 1676 1679 * 1677 1680 * @param string $field … … 1725 1728 * Check if the topic or reply author is anonymous 1726 1729 * 1727 * @since (r5544)1730 * @since 2.6.0 bbPress (r5544) 1728 1731 * 1729 1732 * @param string $field
Note: See TracChangeset
for help on using the changeset viewer.