Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 17057 Rev 17078
Línea 39... Línea 39...
39
                'id'    => 'description',
39
                'id'    => 'description',
40
            ]
40
            ]
41
        ]);
41
        ]);
Línea 42... Línea 42...
42
        
42
        
43
        $this->add([
-
 
44
            'name' => 'order',
-
 
45
            'type' => \Laminas\Form\Element\Text::class,
-
 
46
            'attributes' => [
-
 
47
                'id'    => 'order',
-
 
48
            ],
-
 
49
        ]);
-
 
50
        
-
 
51
        $this->add([
43
        $this->add([
52
            'name' => 'file',
44
            'name' => 'file',
53
            'type' => \Laminas\Form\Element\Hidden::class,
45
            'type' => \Laminas\Form\Element\Hidden::class,
54
            'attributes' => [
46
            'attributes' => [
55
                'id' => 'file',
47
                'id' => 'file',
56
            ]
48
            ]
-
 
49
        ]);
57
        ]);
50
 
58
        $this->add([
51
        $this->add([
59
            'name' => 'marketplace',
52
            'name' => 'marketplace',
60
            'type' => \Laminas\Form\Element\Hidden::class,
53
            'type' => \Laminas\Form\Element\Hidden::class,
61
            'attributes' => [
54
            'attributes' => [
62
                'id' => 'marketplace',
55
                'id' => 'marketplace',
63
            ]
56
            ]
Línea 64... Línea -...
64
        ]);
-
 
65
        
57
        ]);
66
 
58
        
67
        $this->add([
59
        $this->add([
68
            'name' => 'status',
60
            'name' => 'status',
69
            'type' => \Laminas\Form\Element\Select::class,
61
            'type' => \Laminas\Form\Element\Select::class,
Línea 131... Línea 123...
131
            'type' => \Laminas\Form\Element\Text::class,
123
            'type' => \Laminas\Form\Element\Text::class,
132
            'attributes' => [
124
            'attributes' => [
133
                'id'    => 'cost',
125
                'id'    => 'cost',
134
            ],
126
            ],
135
        ]);
127
        ]);
136
        
-
 
137
    }
128
    }
138
}
129
}