Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
17002 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form\CompanyProfile;
6
 
7
use Laminas\Form\Form;
8
 
9
class ProfileImageForm extends Form
10
{
11
 
12
    /**
13
     *
14
     * @param array $config
15
     */
16
    public function __construct()
17
    {
18
        parent::__construct();
19
        $this->setInputFilter(new ProfileImageFilter());
20
 
21
        $this->add([
22
            'name' => 'image',
23
            'type' => \Laminas\Form\Element\File::class,
24
             'attributes' => [
25
                'id' => 'image',
26
            ]
27
         ]);
28
 
29
    }
30
}