# jetformbuilder/3.6.4/modules/fields-render-validator/module.php

JetFormBuilder — Dynamic Blocks Form Builder, version 3.6.4. 104 lines.

- Page: https://pluginprobe.com/plugins/jetformbuilder/3.6.4/code/modules/fields-render-validator/module.php
- Raw: https://pluginprobe.com/plugins/jetformbuilder/3.6.4/raw/modules/fields-render-validator/module.php
- Modified: 2024-11-25T15:31:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jetformbuilder/3.6.4/code/modules/fields-render-validator/module.php#L10-L20`.

```php
<?php

namespace JFB_Modules\Fields_Render_Validator;

use JFB_Components\Module\Base_Module_Dir_It;
use JFB_Components\Module\Base_Module_Dir_Trait;
use JFB_Components\Module\Base_Module_Handle_It;
use JFB_Components\Module\Base_Module_Handle_Trait;
use JFB_Components\Module\Base_Module_It;
use JFB_Components\Module\Base_Module_Url_It;
use JFB_Components\Module\Base_Module_Url_Trait;
use JFB_Components\Module\Base_Module_After_Install_It;


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

class Module implements
	Base_Module_It,
	Base_Module_Url_It,
	Base_Module_Handle_It,
	Base_Module_After_Install_It,
	Base_Module_Dir_It {

	use Base_Module_Handle_Trait;
	use Base_Module_Url_Trait;
	use Base_Module_Dir_Trait;

	public function rep_item_id() {
		return 'fields-render-validator';
	}

	public function condition(): bool {
		return current_user_can( 'manage_options' );
	}

	protected $fields_stack = array();

	public function init_hooks() {
		add_filter( 'jet-form-builder/after-start-form', array( $this, 'reset_stack' ), 0 );
		add_filter( 'jet-form-builder/after-render-field', array( $this, 'update_stack' ), 0, 5 );
	}

	public function reset_stack( string $html ): string {
		$this->fields_stack = array();
		return $html;
	}

	public function update_stack( $output, $field_name, $attrs, $content, $wp_block ): string {

		if ( isset( $attrs['name'] ) && 'undefined' !== $attrs['name'] ) {
			$name = $attrs['name'];

			$context = $wp_block->context ?? '';

			/**
			 * do nothing if field_name is conditional-block
			 *
			 * @link https://github.com/Crocoblock/issues-tracker/issues/12874
			 */
			if ( 'conditional-block' === $field_name ) {
				return $output;
			}

			if ( $context ) {
				/**
				 * do nothing if context is jet-forms/conditional-block--name
				 *
				 * @link https://github.com/Crocoblock/issues-tracker/issues/12874
				 */
				if ( isset( $context['jet-forms/conditional-block--name'] ) ) {
					return $output;
				}
				$context_name = $context['jet-forms/repeater-field--name'] ?? '';
				$context_index = $context['jet-forms/repeater-row--current-index'] ?? '';
				if ( '' !== $context_name ) {
					$name = $context_name . $context_index . $name;
				}
			}

			if ( in_array( $name, $this->fields_stack ) ) {
				$parent = $context ? 'repeater' : 'form';
				$output .= "<div class='jet-form-builder__uniq-name-error' style='color:red;font-size: 12px;'>You already have field < " . esc_attr( $attrs['name'] ) . ' > in this ' . $parent . '. Please rename current field to avoid form processing errors.</div>';
			} else {
				$this->fields_stack[] = $name;
			}
		}

		return $output;
	}

	public function on_install() {
	}

	public function on_uninstall() {
	}

	public function remove_hooks() {
	}

}

```
