HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/zaklada/wp-content/plugins/wpml-string-translation/classes/batch-translation/Convert.php
<?php

namespace WPML\ST\Batch\Translation;

use WPML\Collect\Support\Traits\Macroable;
use WPML\FP\Fns;
use WPML\FP\Relation;
use function WPML\FP\curryN;
use function WPML\FP\invoke;
use function WPML\FP\pipe;

/**
 * Class Convert
 * @package WPML\ST\Batch\Translation
 * @method static callable|array toBatchElements( ...$getBatchId, ...$setBatchRecord, ...$elements, ...$basketName ) :: ( string → int ) → ( int → int → string ) → [WPML_TM_Translation_Batch_Element] → string → [WPML_TM_Translation_Batch_Element]
 */
class Convert {

	use Macroable;

	public static function init() {

		self::macro( 'toBatchElements', curryN( 4, function ( $getBatchId, $setBatchRecord, $elements, $basketName ) {

			// $isString :: WPML_TM_Translation_Batch_Element → bool
			$isString = pipe( invoke( 'get_element_type' ), Relation::equals( 'string' ) );

			list( $stringElements, $otherElements ) = wpml_collect( $elements )->partition( $isString );

			$makeBatchPerLanguage = function ( \WPML_TM_Translation_Batch_Element $element ) use ( $getBatchId, $setBatchRecord, $basketName ) {
				$makeBatchElement = function ( $action, $lang ) use ( $element, $getBatchId, $setBatchRecord, $basketName ) {
					$batchId = $getBatchId( $basketName . '-' . $lang );

					$setBatchRecord( $batchId, $element->get_element_id(), $element->get_source_lang() );

					return Fns::makeN( 5, 'WPML_TM_Translation_Batch_Element',
							$batchId,
							'st-batch',
							$element->get_source_lang(),
							[ $lang => $action ],
							[]
					);
				};

				return Fns::map( $makeBatchElement, $element->get_target_langs() );
			};

			$stringElements = $stringElements->map( $makeBatchPerLanguage )
			                                 ->flatten()
			                                 ->unique( invoke( 'get_target_langs' )  );

			return $otherElements->merge( $stringElements )
			                     ->toArray();
		} ) );


	}
}

Convert::init();