HEX
Server: Apache
System: Linux webd006.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: zwafgyp (177615)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/zwafgyp/lacalita/wp-content/plugins/rey-core/inc/modules/estimated-delivery/acf-fields.php
<?php
namespace ReyCore\Modules\EstimatedDelivery;

if (!defined('ABSPATH')) exit; // Exit if accessed directly

class AcfFields {

	const FIELDS_GROUP_KEY = 'group_5d4ff536a2684';

	public function __construct(){

		if( ! function_exists('acf_add_local_field') ){
			return;
		}

		foreach ($this->fields() as $key => $field) {
			acf_add_local_field($field);
		}

		add_filter('acf/prepare_field/name=estimated_delivery__days', [$this, 'prepend_delivery_days']);
		add_filter('acf/prepare_field/name=estimated_delivery__days_margin', [$this, 'append_delivery_days_margin']);

	}

	public function prepend_delivery_days($field){
		$field['prepend'] = sprintf(esc_html__('Global: %s', 'rey-core'), get_theme_mod('estimated_delivery__days', 3));
		return $field;
	}

	public function append_delivery_days_margin($field){
		if( $global = get_theme_mod('estimated_delivery__days_margin', '') ){
			$field['append'] = sprintf(esc_html__('Global: %s', 'rey-core'), $global);
		}
		return $field;
	}

	public function fields(){
		return [
			[
				'key' => 'field_5ebea4245eb8f',
				'label' => 'Estimated Delivery',
				'name' => '',
				'type' => 'tab',
				'instructions' => '',
				'required' => 0,
				'conditional_logic' => 0,
				'wrapper' => [
					'width' => '',
					'class' => '',
					'id' => '',
				],
				'placement' => 'top',
				'endpoint' => 0,
				'parent' => self::FIELDS_GROUP_KEY,
			],
			[
				'key' => 'field_604be57ae88dd',
				'label' => 'Hide estimated delivery text',
				'name' => 'estimated_delivery__hide',
				'type' => 'true_false',
				'instructions' => '',
				'required' => 0,
				'conditional_logic' => 0,
				'wrapper' => [
					'width' => '',
					'class' => '',
					'id' => '',
				],
				'message' => '',
				'default_value' => 0,
				'ui' => 1,
				'ui_on_text' => '',
				'ui_off_text' => '',
				'parent' => self::FIELDS_GROUP_KEY,
			],
			[
				'key' => 'field_5ebea4205eb8e',
				'label' => 'Days',
				'name' => 'estimated_delivery__days',
				'type' => 'number',
				'instructions' => '',
				'required' => 0,
				'conditional_logic' => [
					[
						[
							'field' => 'field_604be57ae88dd',
							'operator' => '!=',
							'value' => '1',
						],
					],
				],
				'wrapper' => [
					'width' => '',
					'class' => '',
					'id' => '',
				],
				'default_value' => '',
				'placeholder' => '',
				'prepend' => '',
				'append' => '',
				'min' => '',
				'max' => '',
				'step' => '',
				'parent' => self::FIELDS_GROUP_KEY,
			],
			[
				'key' => 'field_5f5951eb0dcc9',
				'label' => 'Margin',
				'name' => 'estimated_delivery__days_margin',
				'type' => 'number',
				'instructions' => '',
				'required' => 0,
				'conditional_logic' => [
					[
						[
							'field' => 'field_604be57ae88dd',
							'operator' => '!=',
							'value' => '1',
						],
					],
				],
				'wrapper' => [
					'width' => '',
					'class' => '',
					'id' => '',
				],
				'default_value' => '',
				'placeholder' => '',
				'prepend' => '',
				'append' => '',
				'min' => '',
				'max' => '',
				'step' => '',
				'parent' => self::FIELDS_GROUP_KEY,
			],
			[
				'key' => 'field_604be5abe88de',
				'label' => 'Custom Text',
				'name' => 'estimated_delivery__custom_text',
				'type' => 'text',
				'instructions' => 'Replace default with custom text for this product. Please know that it replaces the entire text!',
				'required' => 0,
				'conditional_logic' => [
					[
						[
							'field' => 'field_604be57ae88dd',
							'operator' => '!=',
							'value' => '1',
						],
					],
				],
				'wrapper' => [
					'width' => '',
					'class' => '',
					'id' => '',
				],
				'default_value' => '',
				'placeholder' => '',
				'prepend' => '',
				'append' => '',
				'maxlength' => '',
				'parent' => self::FIELDS_GROUP_KEY,
			],
		];
	}
}