Changeset 3351155
- Timestamp:
- 08/27/2025 11:31:36 AM (7 months ago)
- Location:
- smartling-connector/trunk
- Files:
-
- 5 edited
-
inc/Smartling/WP/Controller/ConfigurationProfilesController.php (modified) (3 diffs)
-
inc/Smartling/WP/Table/QueueManagerTableWidget.php (modified) (3 diffs)
-
inc/config/services.yml (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
smartling-connector.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
smartling-connector/trunk/inc/Smartling/WP/Controller/ConfigurationProfilesController.php
r3333320 r3351155 12 12 use Smartling\Helpers\SiteHelper; 13 13 use Smartling\Helpers\SmartlingUserCapabilities; 14 use Smartling\Helpers\WordpressFunctionProxyHelper; 14 15 use Smartling\Jobs\JobAbstract; 15 16 use Smartling\Queue\QueueInterface; … … 39 40 private QueueInterface $queue, 40 41 private UploadQueueManager $uploadQueueManager, 42 private WordpressFunctionProxyHelper $wpProxy, 41 43 ) { 42 44 parent::__construct($connector, $pluginInfo, $settingsManager, $siteHelper, $manager, $cache); … … 200 202 $this->getManager(), 201 203 $this->uploadQueueManager, 204 $this->wpProxy, 202 205 ), 203 206 ]); -
smartling-connector/trunk/inc/Smartling/WP/Table/QueueManagerTableWidget.php
r3340860 r3351155 7 7 use Smartling\Exception\EntityNotFoundException; 8 8 use Smartling\Helpers\HtmlTagGeneratorHelper; 9 use Smartling\Helpers\WordpressFunctionProxyHelper; 9 10 use Smartling\Jobs\DownloadTranslationJob; 10 11 use Smartling\Jobs\JobAbstract; … … 37 38 private SubmissionManager $submissionManager, 38 39 private UploadQueueManager $uploadQueueManager, 40 private WordpressFunctionProxyHelper $wpProxy, 39 41 ) 40 42 { … … 140 142 private function getUploadCronActionCell(?ConfigurationProfileEntity $profile, int $count): string 141 143 { 142 if ($count === 0 && $this->submissionManager->findSubmissionForCloning( ) === null) {144 if ($count === 0 && $this->submissionManager->findSubmissionForCloning($this->wpProxy->get_current_blog_id()) === null) { 143 145 return self::MESSAGE_NOTHING_TO_DO; 144 146 } -
smartling-connector/trunk/inc/config/services.yml
r3338937 r3351155 351 351 - "@queue.db" 352 352 - "@manager.upload.queue" 353 - "@wp.proxy" 353 354 354 355 wp.settings.edit: -
smartling-connector/trunk/readme.txt
r3347982 r3351155 5 5 Tested up to: 6.6.2 6 6 Requires PHP: 8.0 7 Stable tag: 4.3. 17 Stable tag: 4.3.2 8 8 License: GPLv2 or later 9 9 … … 63 63 64 64 == Changelog == 65 = 4.3.2 = 66 * Fixed a fatal error on the configuration screen 67 65 68 = 4.3.1 = 66 69 * Changed cloning to only work with submissions from the blog that initiates the cron job … … 70 73 * Added support for Elementor social icons widget 71 74 * Fixed issue where supported elementor content was partially translated 72 * Fixed fatal error on the Settings page when no configuration profiles are present75 * Fixed a fatal error on the Settings page when no configuration profiles are present 73 76 74 77 = 4.2.0 = -
smartling-connector/trunk/smartling-connector.php
r3347982 r3351155 12 12 * Plugin URI: https://www.smartling.com/products/automate/integrations/wordpress/ 13 13 * Description: Integrate your WordPress site with Smartling to upload your content and download translations. 14 * Version: 4.3. 114 * Version: 4.3.2 15 15 * Author: Smartling 16 16 * Author URI: https://www.smartling.com
Note: See TracChangeset
for help on using the changeset viewer.