Changeset 3066245
- Timestamp:
- 04/07/2024 10:17:11 AM (2 years ago)
- Location:
- advanced-import
- Files:
-
- 39 added
- 3 edited
-
tags/1.4.1 (added)
-
tags/1.4.1/LICENSE.txt (added)
-
tags/1.4.1/admin (added)
-
tags/1.4.1/admin/class-advanced-import-admin.php (added)
-
tags/1.4.1/admin/class-advanced-import-tracking.php (added)
-
tags/1.4.1/admin/class-elementor-import.php (added)
-
tags/1.4.1/admin/class-reset.php (added)
-
tags/1.4.1/admin/index.php (added)
-
tags/1.4.1/advanced-import.php (added)
-
tags/1.4.1/assets (added)
-
tags/1.4.1/assets/css (added)
-
tags/1.4.1/assets/css/advanced-import-admin.min.css (added)
-
tags/1.4.1/assets/js (added)
-
tags/1.4.1/assets/js/advanced-import-admin.min.js (added)
-
tags/1.4.1/assets/library (added)
-
tags/1.4.1/assets/library/isotope (added)
-
tags/1.4.1/assets/library/isotope/isotope.pkgd.min.js (added)
-
tags/1.4.1/assets/library/sweetalert2 (added)
-
tags/1.4.1/assets/library/sweetalert2/sweetalert2.all.js (added)
-
tags/1.4.1/assets/library/sweetalert2/sweetalert2.all.min.js (added)
-
tags/1.4.1/example.php (added)
-
tags/1.4.1/includes (added)
-
tags/1.4.1/includes/class-advanced-import-activator.php (added)
-
tags/1.4.1/includes/class-advanced-import-cron.php (added)
-
tags/1.4.1/includes/class-advanced-import-deactivator.php (added)
-
tags/1.4.1/includes/class-advanced-import-i18n.php (added)
-
tags/1.4.1/includes/class-advanced-import-loader.php (added)
-
tags/1.4.1/includes/class-advanced-import.php (added)
-
tags/1.4.1/includes/class-theme-template-library-base.php (added)
-
tags/1.4.1/includes/functions-advanced-import.php (added)
-
tags/1.4.1/includes/index.php (added)
-
tags/1.4.1/includes/theme-template-library (added)
-
tags/1.4.1/includes/theme-template-library/acmethemes.php (added)
-
tags/1.4.1/includes/theme-template-library/cosmoswp.php (added)
-
tags/1.4.1/index.php (added)
-
tags/1.4.1/languages (added)
-
tags/1.4.1/languages/advanced-import.pot (added)
-
tags/1.4.1/readme.txt (added)
-
tags/1.4.1/uninstall.php (added)
-
trunk/advanced-import.php (modified) (2 diffs)
-
trunk/includes/class-advanced-import.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
advanced-import/trunk/advanced-import.php
r2895153 r3066245 15 15 * Plugin URI: https://addonspress.com/item/advanced-import 16 16 * Description: Easily import demo data starter site packages or Migrate your site data 17 * Version: 1.4. 017 * Version: 1.4.1 18 18 * Author: AddonsPress 19 19 * Author URI: https://addonspress.com/ … … 25 25 26 26 /*Define Constants for this plugin*/ 27 define( 'ADVANCED_IMPORT_VERSION', '1.4. 0' );27 define( 'ADVANCED_IMPORT_VERSION', '1.4.1' ); 28 28 define( 'ADVANCED_IMPORT_PLUGIN_NAME', 'advanced-import' ); 29 29 define( 'ADVANCED_IMPORT_PATH', plugin_dir_path( __FILE__ ) ); -
advanced-import/trunk/includes/class-advanced-import.php
r2732013 r3066245 75 75 */ 76 76 public $plugin_i18n; 77 78 /** 79 * The admin class object of the plugin. 80 * 81 * @since 1.4.1 82 * @access public 83 * @var object Advanced_Import_Admin $actions 84 */ 85 public $actions; 86 87 /** 88 * The admin class object of the plugin. 89 * 90 * @since 1.4.1 91 * @access public 92 * @var object Advanced_Import_Admin $filters 93 */ 94 public $filters; 95 96 /** 97 * The admin class object of the plugin. 98 * 99 * @since 1.4.1 100 * @access public 101 * @var object Advanced_Import_Admin $domain 102 */ 103 public $domain; 104 105 /** 106 * The admin class object of the plugin. 107 * 108 * @since 1.4.1 109 * @access public 110 * @var object Advanced_Import_Admin $errors 111 */ 112 public $errors; 77 113 78 114 /** -
advanced-import/trunk/readme.txt
r2895153 r3066245 5 5 Tags: import, advanced import, demo import, theme import, widget import, customizer import 6 6 Requires at least: 5.0 7 Tested up to: 6. 27 Tested up to: 6.5 8 8 Requires PHP: 5.6.20 9 Stable tag: 1.4. 09 Stable tag: 1.4.1 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 225 225 == Changelog == 226 226 227 = 1.4.1 - 2023-04-06 = 228 * Updated : Test with WordPress latest version 229 227 230 = 1.4.0 - 2023-04-06 = 228 231 * Added: New hook `advanced_import_force_proceed`
Note: See TracChangeset
for help on using the changeset viewer.