2023-12-26 00:44:49 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Form\Fields;
|
|
|
|
|
2023-12-26 20:06:57 +01:00
|
|
|
use Faker\Generator;
|
|
|
|
|
2023-12-26 00:44:49 +01:00
|
|
|
class TextareaField extends Field
|
|
|
|
{
|
2024-02-06 01:45:25 +01:00
|
|
|
public bool $required;
|
|
|
|
|
2023-12-26 00:44:49 +01:00
|
|
|
public static function name(): string
|
|
|
|
{
|
|
|
|
return 'Textarea';
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function meta(): array
|
|
|
|
{
|
|
|
|
return [
|
2023-12-26 20:06:57 +01:00
|
|
|
['key' => 'rows', 'default' => 5, 'rules' => ['rows' => 'present|integer|gt:0'], 'label' => 'Zeilen'],
|
|
|
|
['key' => 'required', 'default' => false, 'rules' => ['required' => 'present|boolean'], 'label' => 'Erforderlich'],
|
2023-12-26 00:44:49 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function default(): string
|
|
|
|
{
|
|
|
|
return '';
|
|
|
|
}
|
2023-12-26 20:06:57 +01:00
|
|
|
|
|
|
|
public static function fake(Generator $faker): array
|
|
|
|
{
|
2023-12-27 22:39:23 +01:00
|
|
|
return [
|
|
|
|
'rows' => $faker->numberBetween(5, 10),
|
|
|
|
'required' => $faker->boolean(),
|
|
|
|
];
|
2023-12-26 20:06:57 +01:00
|
|
|
}
|
2024-02-06 01:45:25 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
public function getRegistrationRules(): array
|
|
|
|
{
|
|
|
|
return [$this->key => $this->required ? ['required', 'string'] : ['nullable', 'string']];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
public function getRegistrationAttributes(): array
|
|
|
|
{
|
|
|
|
return [$this->key => $this->name];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
public function getRegistrationMessages(): array
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
2023-12-26 00:44:49 +01:00
|
|
|
}
|