Rev 303 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
<?phpdeclare(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 HabitValueForm extends Form{public function __construct(){parent::__construct();$this->setInputFilter(new HabitValueFilter());$this->add(['name' => 'name','type' => \Laminas\Form\Element\Text::class,'attributes' => ['id' => 'name','maxlength' => 100]]);$this->add(['name' => 'description','type' => \Laminas\Form\Element\Textarea::class,'attributes' => ['id' => 'description','maxlength' => 512]]);}}