PluginProbe
Import WP – CSV & XML Import Export for WordPress / trunk
Import WP – CSV & XML Import Export for WordPress vtrunk
2.14.24 2.14.23 2.7.0 2.7.1 2.7.10 2.7.11 2.7.12 2.7.13 2.7.14 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.9.0 2.9.1 trunk 0.1.6 All 142 releases
jc-importer / jc-importer.php

jc-importer.php in Import WP – CSV & XML Import Export for WordPress trunk, at jc-importer.php

48 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Plugin Name: Import WP
5 * Plugin URI: https://www.importwp.com
6 * Description: Import WP is a powerful Importer & Exporter with a visual data selection tool that makes it easy to Export or Import any XML or CSV file to WordPress.
7 * Author: James Collings <james@jclabs.co.uk>
8 * Version: 2.14.24
9 * Author URI: https://www.importwp.com
10 * Network: True
11 * Text Domain: jc-importer
12 * Domain Path: /languages
13 */
14
15 $iwp_base_path = dirname(__FILE__);
16
17 if (!defined('IWP_VERSION')) {
18 define('IWP_VERSION', '2.14.24');
19 }
20
21 if (!defined('IWP_MINIMUM_PHP_VERSION')) {
22 define('IWP_MINIMUM_PHP_VERSION', '5.4');
23 }
24
25 if (!defined('IWP_POST_TYPE')) {
26 define('IWP_POST_TYPE', 'iwp-importer');
27 }
28
29 if (!defined('EWP_POST_TYPE')) {
30 define('EWP_POST_TYPE', 'iwp-exporter');
31 }
32
33 if (!defined('IWP_CORE_MIN_PRO_VERSION')) {
34 define('IWP_CORE_MIN_PRO_VERSION', '2.6.0');
35 }
36
37 if (!defined('IWP_DEBUG')) {
38 define('IWP_DEBUG', false);
39 }
40
41 if (version_compare(PHP_VERSION, IWP_MINIMUM_PHP_VERSION, '>=')) {
42 require_once $iwp_base_path . '/class/autoload.php';
43 require_once $iwp_base_path . '/setup-iwp.php';
44 require_once $iwp_base_path . '/functions.php';
45 }
46
47 register_deactivation_hook(__FILE__, 'iwp_register_muplugin_uninstall');
48