HEX
HEX
Server: Apache
System: Linux localhost.localdomain 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64
User: www (1001)
PHP: 8.1.32
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/ahmsolaiman.com/wp-content/plugins/types/application/controllers/m2m.php
<?php

use OTGS\Toolset\Common\Relationships\API\Factory;
use OTGS\Toolset\Common\Utility\Admin\Notices\Builder;
use OTGS\Toolset\Common\WPML\WpmlService;
use OTGS\Toolset\Types\Controller\Page\Extension\AssociationsImport;
use OTGS\Toolset\Types\Controller\Page\Extension\EditPostIntermediary;
use OTGS\Toolset\Types\Field\Group\Repeatable\ItemPathBuilder;
use OTGS\Toolset\Types\Model\Post\Intermediary\Request;
use OTGS\Toolset\Types\Model\Post\Intermediary\View\PostEdit;
use OTGS\Toolset\Types\Post\Import\Association\View\Notice;
use OTGS\Toolset\Types\Post\Meta\Associations;
use OTGS\Toolset\Types\Wordpress\Option\Associations\ImportAvailable;
use OTGS\Toolset\Types\Wordpress\Postmeta\Storage;


/**
 * This file only handles controls which are m2m AND Types related.
 * So far we only need to remove GUI elements when m2m is disabled.
 *
 * @since m2m
 */
class Types_M2M {

	/** @var bool */
	private $is_m2m_active;

	/** @var WpmlService */
	private $wpml_service;

	/** @var ItemPathBuilder|null */
	private $rfg_item_path_builder;


	/**
	 * Types_M2M constructor.
	 *
	 * @param WpmlService $wpml_service
	 */
	public function __construct( WpmlService $wpml_service ) {
		$this->wpml_service = $wpml_service;
	}


	/**
	 * Run...
	 */
	public function initialize() {
		$this->is_m2m_active = apply_filters( 'toolset_is_m2m_enabled', false );

		$this->actions_when_m2m_is_active();
		$this->limitations_when_m2m_is_not_active();
	}


	/**
	 * Init intermediary edit
	 *
	 * @action load-post.php, load-post-new.php
	 */
	public function load_intermediary_edit() {
		// This block is not required,
		// but to make sure we just initialise the whole object tree, if the current post is really an intermediary
		if ( ! isset( $_REQUEST['post'] ) && ! isset( $_REQUEST['post_type'] ) ) {
			// no post edit page
			return;
		}

		$post_type = isset( $_REQUEST['post_type'] )
			? $_REQUEST['post_type']
			: get_post_type( $_REQUEST['post'] );

		if ( ! $post_type ) {
			return;
		}

		$intermediary_post_type = Toolset_Post_Type_Repository::get_instance()->get( $post_type );
		// If it is a third party post type, it could be register too late, so it will not be handled by Types.
		if ( ! $intermediary_post_type || ! $intermediary_post_type->is_intermediary() ) {
			// no intermediary -> abort
			return;
		}

		if ( ! isset( $_REQUEST['post'] ) ) {
			// core change...?
			return;
		}

		// Required
		$request = new Request(
			new Toolset_Element_Factory(),
			Toolset_Post_Type_Repository::get_instance(),
			new Factory(),
			new Toolset_Relationship_Role_Parent(),
			new Toolset_Relationship_Role_Child(),
			new Toolset_Relationship_Role_Intermediary()
		);

		$request->setPostTypeSlug( $intermediary_post_type->get_slug() );
		$request->setIntermediaryId( $_REQUEST['post'] );

		if ( ! $request->getRelationshipDefinition() ) {
			// Everything looks like this is a proper intermediary post but there is no relationship!
			// This is probably due to a database inconsistency and an orphaned IPT flag (or
			// the relationship is missing some of its required posts (parent or child)).
			//
			// We don't render any IPT-related GUI in this case.
			return;
		}

		$view = new PostEdit(
			new Types_Helper_Twig()
		);

		new EditPostIntermediary( $request, $view );
	}


	/**
	 * Hooks when m2m is active
	 *
	 * @refactoring Move the WPML TM/RFG-related stuff to a dedicated class under Interop namespace.
	 */
	private function actions_when_m2m_is_active() {
		if ( ! $this->is_m2m_active ) {
			// abort
			return;
		}

		// Intermediary post page actions
		add_action( 'load-post.php', array( $this, 'load_intermediary_edit' ) );
		add_action( 'load-post-new.php', array( $this, 'load_intermediary_edit' ) );

		// tasks on post deletion
		add_action( 'before_delete_post', static function ( $postid ) {
			$types_post_deletion = new Types_Post_Deletion();
			$types_post_deletion->before_delete_post( $postid );
		} );

		// we need to adjust the "WPML POST KEY" which is used to detect changes on a post, before updating translation
		// jobs to make rfgs being updated, even if nothing else changes, we need to add rfg data to the key.
		add_filter( 'wpml_post_md5_key', static function ( $key, $post ) {
			/* @var Types_Field_Group_Repeatable_Wpml_Post_Md5_Key $rfg_wpml_post_md5_key */
			$rfg_wpml_post_md5_key = Toolset_Singleton_Factory::get( 'Types_Field_Group_Repeatable_Wpml_Post_Md5_Key' );

			return $rfg_wpml_post_md5_key->modify_key_for_post( $key, $post );
		}, 10, 2 );

		// adding rfg item fields to translation job
		add_filter( 'wpml_tm_translation_job_data', function ( $package, $post ) {
			add_filter( Types_Field_Group_Repeatable_Mapper_Legacy::IS_CREATING_NEW_FIELD_GROUP_ITEM_FILTER, '__return_true' );

			$rfg_wpml_translation = new Types_Field_Group_Repeatable_Wpml_Translation_Job_Data( $this->wpml_service );
			$types_post_builder = new Types_Post_Builder();
			$translation_job_helper = new WPML_Translation_Job_Helper();
			$package = $rfg_wpml_translation->wpml_tm_translation_job_data(
				$package, $post, $types_post_builder, $translation_job_helper );

			remove_filter( Types_Field_Group_Repeatable_Mapper_Legacy::IS_CREATING_NEW_FIELD_GROUP_ITEM_FILTER, '__return_true' );

			return $package;
		}, 10, 2 );

		// this will adjust the field titles and styles on the translation job
		add_filter( 'wpml_tm_adjust_translation_fields', function ( $fields ) {
			$rfg_wpml_translation = new Types_Field_Group_Repeatable_Wpml_Translation_Job_Data( $this->wpml_service );

			return $rfg_wpml_translation->wpml_tm_adjust_translation_fields( $fields, $this->get_rfg_item_path_builder() );
		} );

		// when translation job is complete, store translated rfg field values
		add_action( 'wpml_pro_translation_completed', function ( $new_post_id, $fields, $job ) {
			$rfg_wpml_translation = new Types_Field_Group_Repeatable_Wpml_Translation_Job_Data( $this->wpml_service );
			$rfg_wpml_translation->wpml_pro_translation_completed( $new_post_id, $fields, $job );
		}, 10, 3 );

		// remove rfgs from translation management dashboard
		add_filter( 'wpml_tm_dashboard_translatable_types',
			array( $this, 'remove_rfgs_from_tm_dashboard' ), 10, 1 );

		// remove rfgs from cpt translation mode settings
		add_filter( 'wpml_disable_translation_mode_radio',
			array( $this, 'remove_rfgs_from_cpt_translation_mode_settings' ), 10, 3 );

		// register RFG post status
		$this->register_rfg_post_status();

		// export of associations
		add_action( 'export_wp', static function ( /** @noinspection PhpUnusedParameterInspection */ $args ) {
			// better init here than always loading Types_Import_Export
			$types_import_export = Types_Import_Export::get_instance();
			$types_import_export->wp_export();
		}, - 1 );

		// import of associations
		add_action( 'current_screen', static function () {
			if ( ! function_exists( 'get_current_screen' ) ) {
				// loaded to early
				return;
			}

			$current_screen = get_current_screen();
			if ( ! $current_screen ) {
				// no screen, no notice
				return null;
			}

			if ( $current_screen->id !== 'toplevel_page_toolset-dashboard' && $current_screen->id !== 'dashboard' ) {
				// no WP dashboard and no Toolset Dashboard
				return;
			}

			// current screen is WP Dashboard or Toolset Dashboard
			global $wpdb;

			new AssociationsImport(
				new Storage( $wpdb ),
				new Associations(),
				new Notice(
					new Builder()
				),
				new ImportAvailable()
			);
		} );
	}


	/**
	 * Limitations when M2M is disabled
	 * - Remove RFG and Post Reference from the GUI on group edit page
	 * - Remove RFG and Post Reference from post edit page
	 * - Remove RFG and Post Reference from the field control page
	 */
	private function limitations_when_m2m_is_not_active() {
		if ( $this->is_m2m_active ) {
			// abort
			return;
		}

		// remove m2m fields from available field types (used for the dialog "Add new field")
		add_filter( 'types_register_fields', array( $this, 'filter_disable_m2m_fields_of_available_field_types' ) );

		// remove m2m fields from groups
		add_filter( 'types_post_field_group_fields', array( $this, 'filter_disable_m2m_fields_of_field_group' ) );

		// remove m2m fields also for uses outside of a group (like field control page)
		add_filter( 'types_fields', array( $this, 'filter_disable_m2m_fields' ) );
	}


	/**
	 * Filter callback for disabling m2m field types (post reference field and repeatable group)
	 * This will be fired on filter 'types_register_fields' if 'toolset_is_m2m_enabled' returns false
	 *
	 * @param array $field_types
	 *
	 * @return array
	 * @since m2m
	 */
	public function filter_disable_m2m_fields_of_available_field_types( $field_types ) {
		if ( isset( $field_types['post'] ) ) {
			// remove post reference field
			unset( $field_types['post'] );
		}

		// NOTE: repeatable group is not registered as a field type, so nothing to do for it at this point

		return $field_types;
	}


	/**
	 * Filter callback for removing all m2m fields (post reference field and repeatable group) of a field group
	 * This will be fired on filter 'types_field_of_group' if 'toolset_is_m2m_enabled' returns false
	 *
	 * @param string $group_fields
	 *
	 * @return string (string because group fields are stored like this: field_1_slug, field_2_slug,...)
	 * @since m2m
	 */
	public function filter_disable_m2m_fields_of_field_group( $group_fields ) {
		$service_field_group = new Types_Field_Group_Repeatable_Service();
		$group_fields = array_filter( explode( ',', $group_fields ) );

		foreach ( $group_fields as $index => $slug ) {
			if ( $service_field_group->get_object_from_prefixed_string( $slug ) ) {
				// repeatable field group
				unset( $group_fields[ $index ] );
				continue;
			}

			$a_field = wpcf_fields_get_field_by_slug( $slug );
			if ( is_array( $a_field ) && isset( $a_field['type'] ) && $a_field['type'] === 'post' ) {
				// post reference field
				unset( $group_fields[ $index ] );
				// continue;
			}
		}

		return implode( ',', $group_fields );
	}


	/**
	 * Filter callback for disabling m2m fields (post reference field and repeatable group)
	 * This will be fired on filter 'types_fields' if 'toolset_is_m2m_enabled' returns false
	 *
	 * @param array[] $fields
	 *
	 * @return array
	 * @since m2m
	 */
	public function filter_disable_m2m_fields( $fields ) {
		foreach ( $fields as $slug => $a_field ) {
			if ( is_array( $a_field ) && isset( $a_field['type'] ) && $a_field['type'] === 'post' ) {
				// post reference field
				unset( $fields[ $slug ] );
				// continue;
			}

			// NOTE: nothing to do here for repeatable group, as it is not really stored as a field
		}

		return $fields;
	}


	/**
	 * Remove Repeatable Field Groups from Translation Manangement Dashboard
	 *
	 * @action wpml_tm_dashboard_translatable_types
	 *
	 * @param array $post_types
	 *
	 * @return array
	 */
	public function remove_rfgs_from_tm_dashboard( $post_types ) {
		foreach ( $post_types as $slug => $wp_post_type ) {
			if ( is_object( $wp_post_type )
				&& property_exists( $wp_post_type, 'is_repeating_field_group' )
				&& $wp_post_type->is_repeating_field_group
			) {
				// repeatable field group
				unset( $post_types[ $slug ] );
			}
		}

		return $post_types;
	}


	/**
	 * Remove Repeatable Field Groups from Custom Post Type translation settings
	 *
	 * @action wpml_disable_translation_mode_radio
	 *
	 * @param array $disabled_state_for_mode
	 * @param mixed $mode
	 * @param string $content_slug
	 *
	 * @return array
	 * @noinspection PhpUnusedParameterInspection
	 */
	public function remove_rfgs_from_cpt_translation_mode_settings( $disabled_state_for_mode, $mode, $content_slug ) {
		$wp_post_type = get_post_type_object( $content_slug );

		// @phpstan-ignore-next-line
		if ( is_object( $wp_post_type ) && property_exists( $wp_post_type, 'is_repeating_field_group' ) && $wp_post_type->is_repeating_field_group ) {
			$disabled_state_for_mode['state'] = true;
			$disabled_state_for_mode['reason_message'] = 'You cannot change the mode of this post type".';
		}

		return $disabled_state_for_mode;
	}


	/**
	 * For RFGs we have a custom post status 'hidden'
	 */
	public function register_rfg_post_status() {
		// Registering hidden post status
		register_post_status( 'hidden', array(
			'label' => 'Hidden',
			'public' => false,
			'exclude_from_search' => false,
			'show_in_admin_all_list' => false,
			'show_in_admin_status_list' => false,
			'label_count' => array(
				'Hidden <span class="count">(%s)</span>',
				'Hidden <span class="count">(%s)</span>',
			),
		) );
	}


	/**
	 * @return ItemPathBuilder
	 */
	private function get_rfg_item_path_builder() {
		if ( null === $this->rfg_item_path_builder ) {
			$this->rfg_item_path_builder = new ItemPathBuilder(
				new Factory()
			);
		}

		return $this->rfg_item_path_builder;
	}
}