64 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace kernel;
 | |
| 
 | |
| use app\helpers\Debug;
 | |
| use MadeSimple\Validator\Validator;
 | |
| 
 | |
| class FormModel
 | |
| {
 | |
|     protected Validator $validator;
 | |
| 
 | |
|     protected array $data = [];
 | |
| 
 | |
|     public function __construct()
 | |
|     {
 | |
|         $this->validator = new Validator();
 | |
|     }
 | |
| 
 | |
|     public function rules(): array
 | |
|     {
 | |
|         return [];
 | |
|     }
 | |
| 
 | |
|     public function load(array $array): void
 | |
|     {
 | |
|         $rules = $this->rules();
 | |
|         foreach ($array as $key => $item) {
 | |
|             if (isset($rules[$key])) {
 | |
|                 $this->data[$key] = $item;
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public function getData(): array
 | |
|     {
 | |
|         return $this->data;
 | |
|     }
 | |
| 
 | |
|     public function getItem(string $name)
 | |
|     {
 | |
|         if (isset($this->data[$name])){
 | |
|             return $this->data[$name];
 | |
|         }
 | |
| 
 | |
|         return null;
 | |
|     }
 | |
| 
 | |
|     public function validate(): bool
 | |
|     {
 | |
|         $res = $this->validator->validate($this->data, $this->rules());
 | |
|         if (!$res) {
 | |
|             return true;
 | |
|         }
 | |
| 
 | |
|         return false;
 | |
|         //return $this->validator->validate($this->data, $this->rules());
 | |
|     }
 | |
| 
 | |
|     public function getErrors(): array
 | |
|     {
 | |
|         return $this->validator->getProcessedErrors();
 | |
|     }
 | |
| 
 | |
| } |