public function __construct($fieldName, $idFieldName, $oldValue)
 {
     parent::__construct($fieldName);
     $this->idFieldName = $idFieldName;
     $this->oldValue = $oldValue;
 }
 public function __construct($fieldName, $checkLink = false)
 {
     parent::__construct($fieldName);
     $this->checkLink = $checkLink;
 }
 public function __construct($fieldName)
 {
     parent::__construct($fieldName);
 }
 public function __construct($fieldName, $userId)
 {
     parent::__construct($fieldName);
     $this->userId = $userId;
 }
 public function __construct($fieldName, &$acceptedValues)
 {
     parent::__construct($fieldName);
     $this->acceptedValues = $acceptedValues;
 }
 public function __construct($fieldName, &$indexedRecordList, $rootId)
 {
     parent::__construct($fieldName);
     $this->recordList = $indexedRecordList;
     $this->rootId = $rootId;
 }
 public function __construct($fieldName, $fieldType = 'password')
 {
     parent::__construct($fieldName);
     $this->fieldType = $fieldType;
 }
 public function __construct($fieldName, $minValue, $maxValue)
 {
     parent::__construct($fieldName);
     $this->minValue = $minValue;
     $this->maxValue = $maxValue;
 }
 public function __construct($fieldName, $idFieldName, $fileCategory)
 {
     parent::__construct($fieldName);
     $this->idFieldName = $idFieldName;
     $this->fileCategory = $fileCategory;
 }
 public function __construct($fieldName, $maxLength)
 {
     parent::__construct($fieldName);
     $this->maxLength = $maxLength;
 }