Changeset 3382260
- Timestamp:
- 10/22/2025 02:22:10 AM (5 months ago)
- Location:
- quickcreator
- Files:
-
- 4 edited
- 22 copied
-
tags/0.1.17 (copied) (copied from quickcreator/trunk)
-
tags/0.1.17/assets/css/components.css (copied) (copied from quickcreator/trunk/assets/css/components.css)
-
tags/0.1.17/assets/fonts (copied) (copied from quickcreator/trunk/assets/fonts)
-
tags/0.1.17/includes/admin/class-quickcreator-admin.php (copied) (copied from quickcreator/trunk/includes/admin/class-quickcreator-admin.php)
-
tags/0.1.17/includes/admin/class-quickcreator-settings.php (copied) (copied from quickcreator/trunk/includes/admin/class-quickcreator-settings.php)
-
tags/0.1.17/includes/class-quickcreatorblog.php (copied) (copied from quickcreator/trunk/includes/class-quickcreatorblog.php)
-
tags/0.1.17/includes/forms/class-quickcreator-form-config-ci.php (copied) (copied from quickcreator/trunk/includes/forms/class-quickcreator-form-config-ci.php)
-
tags/0.1.17/includes/forms/class-quickcreator-form.php (copied) (copied from quickcreator/trunk/includes/forms/class-quickcreator-form.php)
-
tags/0.1.17/includes/forms/fields/class-quickcreator-form-element-header.php (copied) (copied from quickcreator/trunk/includes/forms/fields/class-quickcreator-form-element-header.php)
-
tags/0.1.17/includes/forms/fields/class-quickcreator-form-element-multichoice.php (copied) (copied from quickcreator/trunk/includes/forms/fields/class-quickcreator-form-element-multichoice.php)
-
tags/0.1.17/includes/forms/fields/class-quickcreator-form-element-select.php (copied) (copied from quickcreator/trunk/includes/forms/fields/class-quickcreator-form-element-select.php)
-
tags/0.1.17/includes/functions.php (copied) (copied from quickcreator/trunk/includes/functions.php)
-
tags/0.1.17/includes/quickcreator/class-content-importer.php (copied) (copied from quickcreator/trunk/includes/quickcreator/class-content-importer.php)
-
tags/0.1.17/includes/quickcreator/class-quickcreator.php (copied) (copied from quickcreator/trunk/includes/quickcreator/class-quickcreator.php) (1 diff)
-
tags/0.1.17/includes/quickcreator/content-parsers/class-classic-editor-parser.php (copied) (copied from quickcreator/trunk/includes/quickcreator/content-parsers/class-classic-editor-parser.php)
-
tags/0.1.17/includes/quickcreator/content-parsers/class-content-parser.php (copied) (copied from quickcreator/trunk/includes/quickcreator/content-parsers/class-content-parser.php) (1 diff)
-
tags/0.1.17/includes/quickcreator/content-parsers/class-elementor-parser.php (copied) (copied from quickcreator/trunk/includes/quickcreator/content-parsers/class-elementor-parser.php)
-
tags/0.1.17/includes/quickcreator/content-parsers/class-gutenberg-parser.php (copied) (copied from quickcreator/trunk/includes/quickcreator/content-parsers/class-gutenberg-parser.php)
-
tags/0.1.17/includes/quickcreator/content-parsers/class-parsers-controller.php (copied) (copied from quickcreator/trunk/includes/quickcreator/content-parsers/class-parsers-controller.php)
-
tags/0.1.17/quickcreator.php (copied) (copied from quickcreator/trunk/quickcreator.php) (2 diffs)
-
tags/0.1.17/readme.txt (copied) (copied from quickcreator/trunk/readme.txt) (1 diff)
-
tags/0.1.17/templates/admin/settings.php (copied) (copied from quickcreator/trunk/templates/admin/settings.php)
-
trunk/includes/quickcreator/class-quickcreator.php (modified) (1 diff)
-
trunk/includes/quickcreator/content-parsers/class-content-parser.php (modified) (1 diff)
-
trunk/quickcreator.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
quickcreator/tags/0.1.17/includes/quickcreator/class-quickcreator.php
r3369497 r3382260 932 932 return new WP_REST_Response( 933 933 array( 934 'error' => __('An exception occurred', ' your-text-domain'),934 'error' => __('An exception occurred', 'quickcreator'), 935 935 'message' => $e->getMessage(), 936 936 'code' => $e->getCode(), -
quickcreator/tags/0.1.17/includes/quickcreator/content-parsers/class-content-parser.php
r3369497 r3382260 178 178 179 179 $attachment_id = media_handle_sideload($file_array); 180 181 if (is_wp_error($attachment_id)) { 182 throw new \Exception('Image upload failed: ' . $attachment_id->get_error_message()); 183 } 184 180 185 update_post_meta($attachment_id, 'quickcreator_file_name', $file_name); 181 186 @unlink($tmp_directory); // phpcs:ignore -
quickcreator/tags/0.1.17/quickcreator.php
r3369497 r3382260 4 4 * Plugin URI: https://wordpress.org/plugins/quickcreator/ 5 5 * Description: Create post with Quickcreator in WordPress 6 * Version: 0.1.1 66 * Version: 0.1.17 7 7 * Author: Quickcreator 8 8 * Author URI: https://quickcreator.io … … 22 22 23 23 if ( ! defined( 'QUICKCREATOR_BLOG_VERSION' ) ) { 24 define( 'QUICKCREATOR_BLOG_VERSION', '0.1.1 6' );24 define( 'QUICKCREATOR_BLOG_VERSION', '0.1.17' ); 25 25 } 26 26 -
quickcreator/tags/0.1.17/readme.txt
r3369497 r3382260 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.8.1 7 Stable tag: 0.1.1 67 Stable tag: 0.1.17 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
r3369497 r3382260 932 932 return new WP_REST_Response( 933 933 array( 934 'error' => __('An exception occurred', ' your-text-domain'),934 'error' => __('An exception occurred', 'quickcreator'), 935 935 'message' => $e->getMessage(), 936 936 'code' => $e->getCode(), -
quickcreator/trunk/includes/quickcreator/content-parsers/class-content-parser.php
r3369497 r3382260 178 178 179 179 $attachment_id = media_handle_sideload($file_array); 180 181 if (is_wp_error($attachment_id)) { 182 throw new \Exception('Image upload failed: ' . $attachment_id->get_error_message()); 183 } 184 180 185 update_post_meta($attachment_id, 'quickcreator_file_name', $file_name); 181 186 @unlink($tmp_directory); // phpcs:ignore -
quickcreator/trunk/quickcreator.php
r3369497 r3382260 4 4 * Plugin URI: https://wordpress.org/plugins/quickcreator/ 5 5 * Description: Create post with Quickcreator in WordPress 6 * Version: 0.1.1 66 * Version: 0.1.17 7 7 * Author: Quickcreator 8 8 * Author URI: https://quickcreator.io … … 22 22 23 23 if ( ! defined( 'QUICKCREATOR_BLOG_VERSION' ) ) { 24 define( 'QUICKCREATOR_BLOG_VERSION', '0.1.1 6' );24 define( 'QUICKCREATOR_BLOG_VERSION', '0.1.17' ); 25 25 } 26 26 -
quickcreator/trunk/readme.txt
r3369497 r3382260 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.8.1 7 Stable tag: 0.1.1 67 Stable tag: 0.1.17 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.