| Total Complexity | 4 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Checkbox extends Component |
||
| 12 | { |
||
| 13 | public string $uuid; |
||
| 14 | |||
| 15 | public function __construct( |
||
| 16 | public ?string $id = null, |
||
| 17 | public ?string $label = null, |
||
| 18 | public ?string $text = null, |
||
| 19 | public ?bool $right = false, |
||
| 20 | public ?string $hint = null, |
||
| 21 | public ?string $hintClass = 'fieldset-label', |
||
| 22 | |||
| 23 | // Validations |
||
| 24 | public ?string $errorClass = 'text-error', |
||
| 25 | public ?bool $omitError = false, |
||
| 26 | public ?bool $firstErrorOnly = false, |
||
| 27 | ) { |
||
| 28 | $this->uuid = md5(serialize($this)) . $id; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function modelName(): ?string |
||
| 34 | } |
||
| 35 | |||
| 36 | public function errorFieldName(): ?string |
||
| 37 | { |
||
| 38 | return $this->modelName() ?? $this->attributes->whereStartsWith('name')->first(); |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Get the view / contents that represent the component. |
||
| 43 | */ |
||
| 44 | public function render(): View|Closure|string |
||
| 47 | } |
||
| 48 | } |
||
| 49 |