HEX
Server: Apache
System: Linux sxb1plmcpnl510113.prod.sxb1.secureserver.net 4.18.0-553.58.1.lve.el8.x86_64 #1 SMP Fri Jul 4 12:07:06 UTC 2025 x86_64
User: acnbijigo78q (10488831)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/acnbijigo78q/public_html/jetk.sa/wp-content/plugins/acfml/classes/class-wpml-acf-term-id.php
<?php

use WPML\FP\Fns;
use WPML\FP\Logic;
use WPML\FP\Obj;
use WPML\FP\Str;

class WPML_ACF_Term_Id {
	/**
	 * @var int The term id.
	 */
	public $id;
	/**
	 * @var WPML_ACF_Field WPML representation of ACF field.
	 */
	private $wpml_acf_field;

	/**
	 * WPML_ACF_Term_Id constructor.
	 *
	 * @param int            $id             The term id.
	 * @param WPML_ACF_Field $wpml_acf_field WPML representation of ACF field.
	 */
	public function __construct( $id, WPML_ACF_Field $wpml_acf_field ) {
		$this->id             = $id;
		$this->wpml_acf_field = $wpml_acf_field;
	}

	/**
	 * Replaces taxonomy term id copied from original post with term id of translated version of taxonomy.
	 *
	 * @return WPML_ACF_Term_Id $WPML_ACF_Term_Id Converted term id or original if not translated yet.
	 */
	public function convert() {
		$fieldKey = Obj::prop( 'key', $this->wpml_acf_field->meta_data );
		if ( null === $fieldKey ) {
			return $this;
		}

		$objectId = $this->getObjectId( $this->wpml_acf_field->meta_data );
		if ( null === $objectId ) {
			return $this;
		}

		$field_object = get_field_object( $fieldKey, $objectId );
		if ( ! empty( $field_object['taxonomy'] ) ) {
			$this->id = apply_filters( 'wpml_object_id', $this->id, $field_object['taxonomy'], true, $this->wpml_acf_field->target_lang );
		}

		return $this;
	}

	/**
	 * @param  array $metaData
	 *
	 * @return int|string|null
	 */
	private function getObjectId( $metaData ) {
		$context = Obj::prop( 'context', $metaData );
		switch ( $context ) {
			case \WPML_ACF_Worker::METADATA_CONTEXT_TERM_FIELD:
				// Passing term_XX to get_field_object will get field values for the term with term_id XX.
				return Logic::ifElse( Logic::isNotNull(), [ self::class, 'normalizeId' ], Fns::identity(), Obj::prop( 'master_term_id', $metaData ) );
			case \WPML_ACF_Worker::METADATA_CONTEXT_POST_FIELD:
			default:
				return Obj::prop( 'master_post_id', $metaData );
		}
	}

	/**
	 * @param int|string $id
	 *
	 * @return string
	 */
	public static function normalizeId( $id ) {
		return Logic::ifElse( Str::startsWith( 'term_' ), Fns::identity(), Str::concat( 'term_' ), $id );
	}
}