Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16822 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16798 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form\Communication;
6
 
7
use Laminas\InputFilter\InputFilter;
8
 
9
class CommunicationFilter extends InputFilter
10
{
11
    public function __construct()
12
    {
13
        $this->add([
14
            'name' => 'message',
15
            'required' => false,
16
            'filters' => [
17
                ['name' => \Laminas\Filter\StringTrim::class],
17002 efrain 18
                ['name' => \LeadersLinked\Filter\HtmlPurify::class],
19
                [
20
                    'name' => \Laminas\Filter\StripTags::class,
21
                    'options' => [
22
                        'allowTags'     => [
23
                            'h1','h2','h3','h4','h5','h6','p','strong','em','s','span','big','small','tt',
24
                            'hr','table','thead','tr','th','td','img', 'a','style'
25
                        ],
26
                    ]
27
 
28
                ],
16798 efrain 29
            ],
30
            'validators' => [
31
                [
32
                    'name' => \Laminas\Validator\NotEmpty::class,
33
                ],
34
            ],
35
        ]);
36
 
37
        $this->add([
38
            'name' => 'file',
39
            'required' => false,
40
            'filters' => [
41
                ['name' => \Laminas\Filter\BaseName::class],
42
            ],
43
            'validators' => [
44
                [
45
                    'name' => \Laminas\Validator\NotEmpty::class,
46
                ],
47
                [
48
                    'name' => \Laminas\Validator\File\Extension::class,
49
                    'options' => [
16822 efrain 50
                        'extension' => ['mov', 'webm','mp4','mpeg','jpg','jpeg','png', 'pdf']
16798 efrain 51
                    ]
52
                ],
53
                [
54
                    'name' => \Laminas\Validator\File\MimeType::class,
55
                    'options' => [
16822 efrain 56
                        'mimeType' => [ 'video/quicktime', 'video/webm', 'video/mp4', 'video/mpeg', 'image/jpg', 'image/jpeg', 'image/png', 'application/pdf'],
16798 efrain 57
                        'enableHeaderCheck' => true,
58
                    ]
59
                ],
60
            ],
61
        ]);
62
    }
63
}