HEX
Server: Apache/2.4.65 (Debian)
System: Linux wordpress-7cb4c6b6f6-qgbk2 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: www-data (33)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/jet-engine/includes/components/glossaries/meta-fields.php
<?php
namespace Jet_Engine\Glossaries;

use Jet_Engine\Meta_Boxes\Option_Sources\Manual_Bulk_Options;

/**
 * Meta fields compatibility class
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

class Meta_Fields extends Manual_Bulk_Options {

	public $source_name = 'glossary';

	/**
	 * Custom part of init
	 * 
	 * @return [type] [description]
	 */
	public function init() {
		add_filter( 'jet-engine/meta-fields/config', [ $this, 'add_data_to_config' ] );
		add_action( 'jet-engine/meta-boxes/save-custom-value', [ $this, 'add_custom_values_to_glossary' ], 10, 2 );
	}

	public function add_data_to_config( $config ) {

		$items = array_merge(
			[ [ 'id' => '', 'name' => __( 'Select glossary', 'jet-engine' ) ] ],
			jet_engine()->glossaries->settings->get()
		);

		$config['glossaries'] = \Jet_Engine_Tools::prepare_list_for_js( $items, 'id', 'name' );
		$config['api_path_search_glossary_fields'] = jet_engine()->api->get_route( 'search-glossary-fields' );

		return $config;

	}

	public function is_field_of_current_source( $field = array() ) {

		if ( isset( $field['options_source'] ) && $this->source_name === $field['options_source'] ) {
			return true;
		} elseif ( isset( $field['options_source'] ) && $this->source_name !== $field['options_source'] ) {
			return false;
		} elseif ( empty( $field['options_from_glossary'] ) || empty( $field['glossary_id'] ) ) {
			return false;
		} else {
			return true;
		}

	}

	public function add_custom_values_to_glossary( $field = null, $field_data = array() ) {

		if ( ! $this->is_field_of_current_source( $field_data ) ) {
			return;
		}

		$glossary = jet_engine()->glossaries->data->get_item_for_edit( absint( $field_data['glossary_id'] ) );

		if ( ! $glossary ) {
			return;
		}

		//adding custom option happens on backend post save, that already has security checks
		//phpcs:ignore
		$new_fields = ! empty( $_REQUEST[ $field ] ) ? $_REQUEST[ $field ] : array();
		$fields     = $glossary['fields'];
		$existing   = array();

		if ( ! is_array( $new_fields ) ) {
			$new_fields = array( $new_fields );
		}

		if ( ( in_array( 'true', $new_fields ) || in_array( 'false', $new_fields ) ) && empty( $new_fields[0] ) ) {
			$new_fields = array_keys( $new_fields );
		}

		foreach ( $fields as $gl_field ) {
			$existing[] = $gl_field['value'];
		}

		$to_add = array_diff( $new_fields, $existing );

		if ( empty( $to_add ) ) {
			return;
		}

		foreach ( $to_add as $value ) {
			$fields[] = array(
				'value' => $value,
				'label' => $value,
			);
		}

		$new_item = array(
			'id' => absint( $field_data['glossary_id'] ),
			'name' => $glossary['name'],
			'fields' => $fields,
		);

		jet_engine()->glossaries->data->set_request( $new_item );
		jet_engine()->glossaries->data->edit_item( false );

	}

	public function get_glossary_for_field( $glossary_id ) {

		$item = jet_engine()->glossaries->data->get_item_for_edit( $glossary_id );

		if ( empty( $item ) || empty( $item['fields'] ) ) {
			return array();
		}

		return $item['fields'];

	}

	public function format_list( $list = array() ) {

		$result = array();

		foreach ( $list as $item ) {
			$result[] = array(
				'key'        => isset( $item['value'] ) ? $item['value'] : '',
				'value'      => isset( $item['label'] ) ? $item['label'] : '',
				'is_checked' => isset( $item['is_checked'] ) ? filter_var( $item['is_checked'], FILTER_VALIDATE_BOOLEAN ) : false,
			);
		}

		return $result;
	}

	public function parse_options( $field = array() ) {
		if ( empty( $field['glossary_id'] ) ) {
			return [];
		} else {
			return $this->format_list( $this->get_glossary_for_field( $field['glossary_id'] ) );
		}
	}

}