Jake Vanderwerf
2026-01-29 e6672fe38ce5d99f3b3f026154f777aded7361de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
namespace JVBase\meta;
 
if (!defined('ABSPATH')) {
    exit;
}
 
/**
 * Single field data container
 * Holds value, config, and tracks dirty state
 */
final class Field
{
    public string $name;
    public mixed $value;
    public mixed $originalValue;
    public array $config;
    public bool $isDirty = false;
    public bool $isValid = true;
    public array $errors = [];
 
    public function __construct(string $name, mixed $value, array $config = [])
    {
        $this->name = $name;
        $this->value = $value;
        $this->originalValue = $value;
        $this->config = $config;
    }
 
    public function set(mixed $value): self
    {
        $this->value = $value;
        $this->isDirty = ($value !== $this->originalValue);
        return $this;
    }
 
    public function get(): mixed
    {
        return $this->value;
    }
 
    public function markClean(): self
    {
        $this->originalValue = $this->value;
        $this->isDirty = false;
        return $this;
    }
 
    public function reset(): self
    {
        $this->value = $this->originalValue;
        $this->isDirty = false;
        return $this;
    }
 
    public function addError(string $message): self
    {
        $this->errors[] = $message;
        $this->isValid = false;
        return $this;
    }
 
    public function clearErrors(): self
    {
        $this->errors = [];
        $this->isValid = true;
        return $this;
    }
 
    public function type(): string
    {
        return $this->config['type'] ?? 'text';
    }
 
    public function isWpDefault(): bool
    {
        return $this->config['_wp_default'] ?? false;
    }
 
    public function isTaxonomy(): bool
    {
        return $this->type() === 'taxonomy' && !isset($this->config['taxonomy_type']);
    }
}