Rev 312 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
<?php
declare(strict_types=1);
namespace LeadersLinked\Form\Habit;
use Laminas\Form\Form;
use Laminas\Db\Adapter\AdapterInterface;
use Laminas\Log\LoggerInterface;
use LeadersLinked\Mapper\CompanySizeMapper;
use LeadersLinked\Mapper\IndustryMapper;
use LeadersLinked\Model\Feed;
class HabitSkillRegisterForm extends Form
{
public function __construct()
{
parent::__construct();
$this->setInputFilter(new HabitSkillRegisterFilter());
$this->add([
'name' => 'date',
'type' => \Laminas\Form\Element\Text::class,
'attributes' => [
'id' => 'date',
'maxlength' => 10
]
]);
$this->add([
'name' => 'quantitative_value',
'type' => \Laminas\Form\Element\Text::class,
'attributes' => [
'id' => 'quantitative_value',
'maxlength' => 5
]
]);
$this->add([
'name' => 'qualitative_description',
'type' => \Laminas\Form\Element\Text::class,
'attributes' => [
'id' => 'qualitative_description',
'maxlength' => 50
]
]);
}
}