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/delta/wp-content/plugins/wpml-string-translation/classes/package-translation/Assign.php
<?php

namespace WPML\ST\PackageTranslation;

class Assign {
	/**
	 * Assign all strings from specified domain to existing package.
	 *
	 * @param  string $domainName
	 * @param  int    $packageId
	 *
	 * @since 3.1.0
	 */
	public static function stringsFromDomainToExistingPackage( $domainName, $packageId ) {
		global $wpdb;

		$wpdb->update(
			$wpdb->prefix . 'icl_strings',
			[ 'string_package_id' => $packageId ],
			[ 'context' => $domainName ]
		);
	}

	/**
	 * Assign all strings from specified domain to new package which is created on fly.
	 *
	 * @param  string $domainName
	 * @param  array  $packageData  {
	 *
	 * @type string $kind_slug e.g. toolset_forms
	 * @type string $kind e.g. "Toolset forms"
	 * @type string $name e.g. "1"
	 * @type string $title e.g. "Form 1"
	 * @type string $edit_link URL to edit page of resource
	 * @type string $view_link (Optional) Url to frontend view page of resource
	 * @type int $page_id (optional)
	 * }
	 * @since 3.1.0
	 */
	public static function stringsFromDomainToNewPackage( $domainName, array $packageData ) {
		$packageId = \WPML_Package_Helper::create_new_package( new \WPML_Package( $packageData ) );
		if ( $packageId ) {
			self::stringsFromDomainToExistingPackage( $domainName, $packageId );
		}
	}
}