From ad052f72a6c994dfb2fe0aa11970c9d110564004 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 10 Feb 2026 17:50:45 +0000
Subject: [PATCH] =Fix for FAQpage schema not outputting correctly, as well as Form.php status radios and editForm on CRUDSkeleton.php

---
 inc/meta/Form.php |  164 ++++++++++++++++++++++++++++++++++++++----------------
 1 files changed, 115 insertions(+), 49 deletions(-)

diff --git a/inc/meta/Form.php b/inc/meta/Form.php
index 7fe9aa0..e5725b0 100644
--- a/inc/meta/Form.php
+++ b/inc/meta/Form.php
@@ -87,7 +87,7 @@
 	// Helper Methods
 	// ─────────────────────────────────────────────────────────────
 
-	protected static function fieldWrap(string $name, string $content, array $config): string
+	public static function fieldWrap(string $name, string $content, array $config): string
 	{
 		$classes = static::buildClasses($config);
 		$datasets = static::buildDatasets($config);
@@ -99,13 +99,16 @@
 			'<div class="%s" data-field="%s" data-field-type="%s"%s>',
 			$classes,
 			$name,
-			$config['type'],
+			str_replace('_', '-', $config['type']),
 			$datasets
 		);
 
+		$output .= static::buildCharacterLimit($config);
 		$output .= static::buildLabel($name, $config);
 		if (!array_key_exists('skipInput', $config)) {
 			$output .= static::buildInput($content);
+		} else {
+			$output .= $content;
 		}
 
 		$output .= static::buildHint($config);
@@ -117,7 +120,7 @@
 	}
 		protected static function buildClasses(array $config): string
 		{
-			$classes = ['field field-' . ($config['type'] ?? 'text')];
+			$classes = ['field '. (str_replace('_','-',sanitize_text_field($config['type'] ?? 'text')))];
 			if (!empty($config['required'])) {
 				$classes[] = 'required';
 			}
@@ -179,6 +182,21 @@
 				);
 			}
 
+	protected static function buildCharacterLimit(array $config): string
+	{
+		$type = $config['type'] ?? 'text';
+		if (in_array($type, ['upload', 'gallery', 'selector'])) {
+			return '';
+		}
+		if (empty($config['maxlength'])) {
+			return '';
+		}
+		return sprintf(
+			'<span class="char-limit"><span class="current">0</span> / <span class="limit">%s</span></span>',
+			esc_html($config['maxlength'])
+		);
+	}
+
 		protected static function buildLabel(string $name, array $config):string
 		{
 			if (!empty($config['label'])) {
@@ -192,7 +210,7 @@
 			return '';
 		}
 
-		protected static function buildInput(string $content):string
+		public static function buildInput(string $content):string
 		{
 			return sprintf(
 				'<div class="field-input-wrapper">
@@ -276,7 +294,7 @@
 
 	protected static function renderText(string $name, mixed $value, array $config): string
 	{
-		$value = ($value === '') ? ' value="'.esc_attr($value).'"' : '';
+		$value = ($value !== '') ? ' value="'.esc_attr($value).'"' : '';
 		$input = sprintf(
 			'<input type="%s"%s%s />',
 			$config['subtype']??'text',
@@ -312,7 +330,7 @@
 	{
 		$attrs = static::inputAttrs($name, $config);
 
-		$value = ($value === '') ? ' value="'.esc_attr($value).'"' : '';
+		$value = ($value !== '') ? ' value="'.esc_attr($value).'"' : '';
 		$input = sprintf(
 			'<input type="number"%s%s />',
 			$value,
@@ -331,7 +349,7 @@
 
 		$attrs = static::inputAttrs($name, $config);
 
-		$value = ($value === '') ? ' value="'.esc_attr($value).'"' : '';
+		$value = ($value !== '') ? ' value="'.esc_attr($value).'"' : '';
 		$input = sprintf(
 			'<div class="quantity">
 				<button type="button" class="decrease" title="%s" aria-label="Decrease %s">%s</button>
@@ -354,7 +372,7 @@
 	protected static function renderEmail(string $name, mixed $value, array $config): string
 	{
 		$config['validate'] = 'email';
-		$value = ($value === '') ? ' value="'.esc_attr($value).'"' : '';
+		$value = ($value !== '') ? ' value="'.esc_attr($value).'"' : '';
 		$input = sprintf(
 			'<input type="email"%s%s />',
 			$value,
@@ -367,7 +385,7 @@
 	protected static function renderUrl(string $name, mixed $value, array $config): string
 	{
 		$config['validate'] = 'url';
-		$value = ($value === '') ? ' value="'.esc_attr($value).'"' : '';
+		$value = ($value !== '') ? ' value="'.esc_attr($value).'"' : '';
 		$input = sprintf(
 			'<input type="url"%s%s />',
 			$value,
@@ -380,7 +398,7 @@
 	protected static function renderTel(string $name, mixed $value, array $config): string
 	{
 		$config['validate'] = 'phone';
-		$value = ($value === '') ? ' value="'.esc_attr($value).'"' : '';
+		$value = ($value !== '') ? ' value="'.esc_attr($value).'"' : '';
 		$input = sprintf(
 			'<input type="tel"%s%s />',
 			$value,
@@ -401,7 +419,7 @@
 			}
 		}
 
-		$value = ($value === '') ? ' value="'.esc_attr($value).'"' : '';
+		$value = ($value !== '') ? ' value="'.esc_attr($value).'"' : '';
 		$input = sprintf(
 			'<input type="date"%s%s />',
 			$value,
@@ -413,7 +431,7 @@
 
 	protected static function renderTime(string $name, mixed $value, array $config): string
 	{
-		$value = ($value === '') ? ' value="'.esc_attr($value).'"' : '';
+		$value = ($value !== '') ? ' value="'.esc_attr($value).'"' : '';
 		$input = sprintf(
 			'<input type="time"%s%s />',
 			$value,
@@ -425,7 +443,7 @@
 
 	protected static function renderDatetime(string $name, mixed $value, array $config): string
 	{
-		$value = ($value === '') ? ' value="'.esc_attr($value).'"' : '';
+		$value = ($value !== '') ? ' value="'.esc_attr($value).'"' : '';
 		$input = sprintf(
 			'<input type="datetime-local"%s%s />',
 			$value,
@@ -492,13 +510,15 @@
 		$optionsHtml = '';
 		if (empty($config['required'])) {
 			$optionsHtml .= '<option value="">— Select —</option>';
+		} else {
+			$optionsHtml .= '<option value="" disabled selected hidden>— Select —</option>';
 		}
 
 		foreach ($options as $optValue => $optLabel) {
 			$optionsHtml .= sprintf(
 				'<option value="%s"%s>%s</option>',
 				esc_attr($optValue),
-				selected($value, $optValue),
+				selected($value, $optValue, false),
 				esc_html($optLabel)
 			);
 		}
@@ -538,7 +558,7 @@
 				$optValue,
 				esc_attr($optValue),
 				$checked,
-				$name,
+				esc_attr($name),
 				$optValue,
 				esc_html($optLabel)
 			);
@@ -552,28 +572,47 @@
 
 	protected static function renderRadio(string $name, mixed $value, array $config): string
 	{
-		$options = $config['options'] ?? [];
+		$options    = $config['options'] ?? [];
+		$inputClass = !empty($config['inputClass']) ? ' class="' . esc_attr($config['inputClass']) . '"' : '';
+		$idPrefix   = $config['idPrefix'] ?? '';
 
 		$radios = sprintf(
 			'<fieldset>
-			<legend>%s%s</legend>',
+        <legend>%s%s</legend>',
 			array_key_exists('label', $config) ? esc_html($config['label']) : 'Select an option',
-			array_key_exists('required', $config) && $config['required']===true ? '<span class="required" aria-label="required">*</span>' : ''
+			array_key_exists('required', $config) && $config['required'] === true
+				? '<span class="required" aria-label="required">*</span>' : ''
 		);
 
-		foreach ($options as $optValue => $optLabel) {
+		foreach ($options as $optValue => $optConfig) {
+			if (is_array($optConfig)) {
+				$optLabel    = $optConfig['label'] ?? $optValue;
+				$optIcon     = $optConfig['icon'] ?? null;
+				$optDisabled = !empty($optConfig['disabled']) ? ' disabled' : '';
+			} else {
+				$optLabel    = $optConfig;
+				$optIcon     = null;
+				$optDisabled = '';
+			}
+
+			$labelContent = $optIcon
+				? jvbDashIcon($optIcon)
+				: '<span>' . esc_html($optLabel) . '</span>';
+
+			$optId = esc_attr($idPrefix . $name . '-' . $optValue);
+
 			$radios .= sprintf(
-				'
-                    <input type="radio" name="%s" value="%s"%s />
-				<label class="radio-option" for="%s-%s">
-                    <span>%s</span>
-                </label>',
+				'<input type="radio" name="%s" id="%s" value="%s"%s%s%s />
+            <label class="radio-option" for="%s" title="%s">%s</label>',
 				esc_attr($name),
+				$optId,
 				esc_attr($optValue),
-				checked($value, $optValue),
-				$name,
-				$optValue,
-				esc_html($optLabel)
+				checked($value, $optValue, false),
+				$optDisabled,
+				$inputClass,
+				$optId,
+				esc_html($optLabel),
+				$labelContent
 			);
 		}
 
@@ -647,7 +686,7 @@
 				?? str_replace('_', ' ',$config['content']);
 		}
 		if ($config['limit'] > 0) {
-			$config['data']['limit'] = $config['limit'];
+			$config['data']['max-files'] = $config['limit'];
 		}
 
 		$attachmentIds = static::parseIds($value);
@@ -693,7 +732,8 @@
 
 		$input .= '<div class="file-error"></div>';
 		$input .= jvbRenderProgressBar('', false, true, true);
-		$input .= '</div>';
+
+		$input .= '</div>'; // closes .file-upload-wrapper
 
 		if ($config['destination'] === 'post_group') {
 			$input .= static::renderUploadGroupAreaStart($config, $plural, $singular);
@@ -704,6 +744,7 @@
 			$input .= static::renderUploadGroupAreaEnd($config, $plural, $singular);
 		}
 
+		$input .= '</div>'; // closes .file-upload-container
 		unset($config['description']);
 		unset($config['label']);
 		return static::fieldWrap($name, $input, $config);
@@ -1441,59 +1482,83 @@
 			$input .= static::render($newName, '', $fieldConfig);
 		}
 		$input .= sprintf(
-			'<button type="button" class="button add-tag-item">%s<span>%s</span></button></div>',
+			'<button type="button" class="button add-tag">%s<span>%s</span></button></div>',
 			jvbIcon('plus'),
-			$field['add_label']??'Add'
+			$config['add_label']??'Add'
 		);
 
 		//Tag Display
-		$input .= '<div class="tag-items">'.static::renderTagItem($config['fields'], $value, $name, null, $tagFormat).'</div>';
+		$input .= '<div class="tag-items">'.static::renderTagItems($config['fields'], $value, $name, $tagFormat).'</div>';
 
 		//Template for tags
 		$input .= sprintf(
 			'<template class="%s">%s</template>',
 			uniqid('tagListItem'),
-			static::renderTagItem($config['fields'], [], null, $name, $tagFormat)
+			static::renderTagItem($config['fields'], [], $name, null, $tagFormat)
 		);
+		$input .= '</div>';
+
+		unset($config['label']);
 
 		return static::fieldWrap($name, $input, $config);
 	}
+		protected static function renderTagItems(array $fields, mixed $value, string $name, string $tagFormat):string
+		{
+			if (!$value || $value === '') {
+				return '';
+			}
+			if (is_string($value)) {
+				$value = explode(',', $value);
+			}
+			if (empty($value)) {
+				return '';
+			}
+			$out = '';
+			foreach ($value as $index => $v) {
+				$out .= static::renderTagItem($fields, $v, $name, $index, $tagFormat);
+			}
+			return $out;
+
+		}
 		protected static function renderTagItem(array $fields, mixed $values, string $name, ?int $index, string $tagFormat):string
 		{
 			$tagText = static::getTagDisplayText($fields, $values, $tagFormat);
 
 			$out = sprintf(
 				'<div class="tag-item"%s><span class="tag-label">%s</span>',
-				($index) ? ' data-index="'.$index.'"' : '',
+				($index !== null) ? ' data-index="'.$index.'"' : '',
 				$tagText
 			);
 
 			foreach ($fields as $fieldName => $fieldConfig) {
 				$value = $values[$fieldName]??'';
-				$fullName = (!$index) ? $fieldName : sprintf('%s:%s:%s', $name, $index, $fieldName);
+				$fullName = ($index === null) ? $fieldName : sprintf('%s:%s:%s', $name, $index, $fieldName);
 
 				$out .= sprintf(
 					'<input type="hidden"
-					name="%s"
-					value="%s"
-					data-field="%s",
-					data-field-type="%s" />',
+						name="%s"
+						value="%s"
+						data-field="%s"
+						data-field-type="%s"
+						id="%s" />',
 					esc_attr($fullName),
 					esc_attr($value),
 					esc_attr($fieldName),
-					esc_attr($fieldConfig['type'])
-				);
-
-				$out .= sprintf(
-					'<button type="button" class="remove-tag" aria-label="Remove">%s</button></div>',
-					jvbIcon('x')
+					esc_attr($fieldConfig['type']),
+					esc_attr($fullName)
 				);
 			}
+
+			$out .= sprintf(
+				'<button type="button" class="remove-tag" aria-label="Remove">%s</button>',
+				jvbIcon('x')
+			);
+			$out .='</div>';
 			return $out;
 		}
 			protected static function getTagDisplayText(array $fields, mixed $values, string $tagFormat):string
 			{
-				if (empty($data)) {
+				if (empty($values)) {
 					return 'New Item';
 				}
 
@@ -1502,7 +1567,7 @@
 						$firstKey = array_key_first($fields);
 						return $values[$firstKey] ?? 'New Item';
 					case 'all_fields':
-						$values = array_filter(array_values($data));
+						$values = array_filter(array_values($values));
 						return implode(', ', $values) ?: 'New Item';
 					default:
 						if (strpos($tagFormat, '{') !== false) {
@@ -1608,12 +1673,13 @@
 
 		foreach ($fields as $fieldName => $fieldConfig) {
 			$fieldValue = $values[$fieldName] ?? '';
-			$fullName = "{$name}:{$fieldName}";
+			$fullName = array_key_exists('wrap', $config) ? $fieldName : "{$name}:{$fieldName}";
 			$output .= static::render($fullName, $fieldValue, $fieldConfig);
 		}
 
 		$output .= sprintf('</%s>', esc_attr($wrapper));
 
+		unset($config['label']);
 		return static::fieldWrap($name, $output, $config);
 	}
 

--
Gitblit v1.10.0