Changeset 3221950
- Timestamp:
- 01/14/2025 04:13:54 AM (14 months ago)
- Location:
- quickcreator
- Files:
-
- 3 edited
- 7 copied
-
tags/0.1.3/trunk (copied) (copied from quickcreator/trunk)
-
tags/0.1.3/trunk/includes/admin/class-quickcreator-admin.php (copied) (copied from quickcreator/trunk/includes/admin/class-quickcreator-admin.php)
-
tags/0.1.3/trunk/includes/quickcreator/class-content-importer.php (copied) (copied from quickcreator/trunk/includes/quickcreator/class-content-importer.php)
-
tags/0.1.3/trunk/includes/quickcreator/class-quickcreator.php (copied) (copied from quickcreator/trunk/includes/quickcreator/class-quickcreator.php) (3 diffs)
-
tags/0.1.3/trunk/includes/quickcreator/content-parsers/class-gutenberg-parser.php (copied) (copied from quickcreator/trunk/includes/quickcreator/content-parsers/class-gutenberg-parser.php)
-
tags/0.1.3/trunk/quickcreator.php (copied) (copied from quickcreator/trunk/quickcreator.php) (1 diff)
-
tags/0.1.3/trunk/readme.txt (copied) (copied from quickcreator/trunk/readme.txt) (1 diff)
-
trunk/includes/quickcreator/class-quickcreator.php (modified) (3 diffs)
-
trunk/quickcreator.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
quickcreator/tags/0.1.3/trunk/includes/quickcreator/class-quickcreator.php
r3221947 r3221950 20 20 use Plugin_Installer_Skin; 21 21 use File_Upload_Upgrader; 22 use WP_Error; 22 23 23 24 class QuieThmeSkin extends Theme_Installer_Skin … … 884 885 ); 885 886 } else { 887 $error_data = $post_id->get_all_error_data(); 888 $error_code = $post_id->get_error_code(); 889 $error_messages = $post_id->get_error_messages(); 886 890 return new WP_REST_Response( 887 891 array( 888 892 'error' => __('There was an error on post adding', 'quickcreator'), 889 'wp_error_message' => $post_id->get_error_message(), 893 'wp_error_messages' => $error_messages, 894 'wp_error_code' => $error_code, 895 'wp_error_data' => $error_data ? $error_data : __('No additional error data available', 'quickcreator'), 890 896 ), 891 897 403 … … 895 901 return new WP_REST_Response( 896 902 array( 897 'error' => $e->getMessage(), 903 'error' => __('An exception occurred', 'your-text-domain'), 904 'message' => $e->getMessage(), 905 'code' => $e->getCode(), 906 'file' => $e->getFile(), 907 'line' => $e->getLine(), 908 'trace' => $e->getTraceAsString(), 898 909 ), 899 910 403 -
quickcreator/tags/0.1.3/trunk/quickcreator.php
r3221380 r3221950 4 4 * Plugin URI: https://wordpress.org/plugins/quickcreator/ 5 5 * Description: Create post with Quickcreator in WordPress 6 * Version: 0.1. 26 * Version: 0.1.3 7 7 * Author: Quickcreator 8 8 * Author URI: https://quickcreator.io -
quickcreator/tags/0.1.3/trunk/readme.txt
r3221380 r3221950 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.6 7 Stable tag: 0.1. 27 Stable tag: 0.1.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
quickcreator/trunk/includes/quickcreator/class-quickcreator.php
r3221947 r3221950 20 20 use Plugin_Installer_Skin; 21 21 use File_Upload_Upgrader; 22 use WP_Error; 22 23 23 24 class QuieThmeSkin extends Theme_Installer_Skin … … 884 885 ); 885 886 } else { 887 $error_data = $post_id->get_all_error_data(); 888 $error_code = $post_id->get_error_code(); 889 $error_messages = $post_id->get_error_messages(); 886 890 return new WP_REST_Response( 887 891 array( 888 892 'error' => __('There was an error on post adding', 'quickcreator'), 889 'wp_error_message' => $post_id->get_error_message(), 893 'wp_error_messages' => $error_messages, 894 'wp_error_code' => $error_code, 895 'wp_error_data' => $error_data ? $error_data : __('No additional error data available', 'quickcreator'), 890 896 ), 891 897 403 … … 895 901 return new WP_REST_Response( 896 902 array( 897 'error' => $e->getMessage(), 903 'error' => __('An exception occurred', 'your-text-domain'), 904 'message' => $e->getMessage(), 905 'code' => $e->getCode(), 906 'file' => $e->getFile(), 907 'line' => $e->getLine(), 908 'trace' => $e->getTraceAsString(), 898 909 ), 899 910 403 -
quickcreator/trunk/quickcreator.php
r3221380 r3221950 4 4 * Plugin URI: https://wordpress.org/plugins/quickcreator/ 5 5 * Description: Create post with Quickcreator in WordPress 6 * Version: 0.1. 26 * Version: 0.1.3 7 7 * Author: Quickcreator 8 8 * Author URI: https://quickcreator.io -
quickcreator/trunk/readme.txt
r3221380 r3221950 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.6 7 Stable tag: 0.1. 27 Stable tag: 0.1.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.