Jake Vanderwerf
3 hours ago 56a9a1ccf764ff7a6af8f8a2292cb07443cb4aa7
inc/registrar/fields/Field.php
@@ -19,6 +19,8 @@
   protected bool $quickEdit = true;   // whether to show in quick edit table
   protected bool $quill;           // whether to use quill
   protected int $maxLength;        // of characters
   protected int $min;
   protected int $max;
   protected string $subtype;
   protected array $condition;
   protected array $allowedSubtype = ['text', 'url','number','tel','email','number'];
@@ -126,7 +128,22 @@
   {
      return $this->section??null;
   }
   public function setMin(int $min):void
   {
      $this->min = $min;
   }
   public function getMin():?int
   {
      return $this->min??null;
   }
   public function setMax(int $max):void
   {
      $this->max = $max;
   }
   public function getMax():?int
   {
      return $this->max??null;
   }
   public function setMaxLength(int $maxLength):void
   {
      $this->maxLength = $maxLength;