mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- use codeigniter4/tasks project to handle cron tasks - use yassinedoghri/podcast-feed project to parse feeds for imports
58 lines
1.3 KiB
PHP
58 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Views\Components\Forms;
|
|
|
|
use ViewComponents\Component;
|
|
|
|
class FormComponent extends Component
|
|
{
|
|
protected ?string $id = null;
|
|
|
|
protected string $name = '';
|
|
|
|
protected string $value = '';
|
|
|
|
protected bool $required = false;
|
|
|
|
protected bool $readonly = false;
|
|
|
|
/**
|
|
* @param array<string, string> $attributes
|
|
*/
|
|
public function __construct(array $attributes)
|
|
{
|
|
parent::__construct($attributes);
|
|
|
|
if ($this->id === null) {
|
|
$this->id = $this->name;
|
|
$this->attributes['id'] = $this->id;
|
|
}
|
|
}
|
|
|
|
public function setValue(string $value): void
|
|
{
|
|
$this->value = htmlspecialchars_decode($value, ENT_QUOTES);
|
|
}
|
|
|
|
public function setRequired(string $value): void
|
|
{
|
|
$this->required = $value === 'true';
|
|
unset($this->attributes['required']);
|
|
if ($this->required) {
|
|
$this->attributes['required'] = 'required';
|
|
}
|
|
}
|
|
|
|
public function setReadonly(string $value): void
|
|
{
|
|
$this->readonly = $value === 'true';
|
|
if ($this->readonly) {
|
|
$this->attributes['readonly'] = 'readonly';
|
|
} else {
|
|
unset($this->attributes['readonly']);
|
|
}
|
|
}
|
|
}
|