default.php
1 year ago
generic.php
8 years ago
mappings.php
7 years ago
shopify.php
7 years ago
wordpress.php
8 years ago
mappings.php
16 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Load up extra automatic mappings for the CSV importer. |
| 4 | * |
| 5 | * @package WooCommerce\Admin\Importers |
| 6 | */ |
| 7 | |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | exit; |
| 10 | } |
| 11 | |
| 12 | require dirname( __FILE__ ) . '/default.php'; |
| 13 | require dirname( __FILE__ ) . '/generic.php'; |
| 14 | require dirname( __FILE__ ) . '/shopify.php'; |
| 15 | require dirname( __FILE__ ) . '/wordpress.php'; |
| 16 |