Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 3016
Línea 27... Línea 27...
27
                'id'    => 'message',
27
                'id'    => 'message',
28
            ]
28
            ]
29
        ]);
29
        ]);
Línea 30... Línea 30...
30
        
30
        
31
        $this->add([
31
        $this->add([
32
            'name' => 'file',
32
            'name' => 'filename',
33
            'type' => \Laminas\Form\Element\File::class,
33
            'type' => \Laminas\Form\Element\File::class,
34
             'attributes' => [
34
             'attributes' => [
35
                'id' => 'file',
35
                'id' => 'filename',
36
            ]
36
            ]
37
         ]);
37
         ]);
-
 
38
 
38
        
39
        /*
39
        $this->add([
40
        $this->add([
40
            'name' => 'fileBase64Name',
41
            'name' => 'fileBase64Name',
41
            'type' => \Laminas\Form\Element\Hidden::class,
42
            'type' => \Laminas\Form\Element\Hidden::class,
42
            'attributes' => [
43
            'attributes' => [
Línea 48... Línea 49...
48
            'name' => 'fileBase64Content',
49
            'name' => 'fileBase64Content',
49
            'type' => \Laminas\Form\Element\Hidden::class,
50
            'type' => \Laminas\Form\Element\Hidden::class,
50
            'attributes' => [
51
            'attributes' => [
51
                'id' => 'fileBase64Content',
52
                'id' => 'fileBase64Content',
52
            ]
53
            ]
53
        ]);
54
        ]);*/
Línea 54... Línea 55...
54
        
55
        
55
    }
56
    }