Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16836 Rev 16837
Línea 408... Línea 408...
408
                    ]);
408
                    ]);
Línea 409... Línea 409...
409
    
409
    
410
                    $form->prepare();
410
                    $form->prepare();
411
                    echo $this->form()->openTag($form);
411
                    echo $this->form()->openTag($form);
412
                    ?>					
412
                    ?>					
-
 
413
    					<div class="row">
413
    					<div class="form-group">
414
                            <div class="col-12 mb-3 mt-3">
414
        					<?php 
415
        					<?php 
415
                            $element = $form->get('name');
416
                            $element = $form->get('name');
416
                            $element->setOptions(['label' => 'LABEL_NAME']);
417
                            $element->setOptions(['label' => 'LABEL_NAME']);
Línea 417... Línea 418...
417
                            $element->setAttributes(['class' => 'form-control']); 
418
                            $element->setAttributes(['class' => 'form-control']); 
418
                                            
419
                                            
419
                            echo $this->formLabel($element);
420
                            echo $this->formLabel($element);
-
 
421
                            echo $this->formText($element);
420
                            echo $this->formText($element);
422
                            ?>
421
                            ?>
423
						    </div>
-
 
424
						</div>
422
						</div>
425
						<div class="row">
423
						<div class="form-group">
426
                            <div class="col-12 mb-3 mt-3">
424
                    	<?php 
427
                    	<?php 
425
                            $element = $form->get('description');
428
                            $element = $form->get('description');
Línea 426... Línea 429...
426
                            $element->setOptions(['label' => 'LABEL_DESCRIPTION']);
429
                            $element->setOptions(['label' => 'LABEL_DESCRIPTION']);
427
                            $element->setAttributes(['class' => 'form-control']); 
430
                            $element->setAttributes(['class' => 'form-control']); 
428
 
431
 
-
 
432
                            echo $this->formLabel($element);
429
                            echo $this->formLabel($element);
433
                            echo $this->formTextArea($element);
430
                            echo $this->formTextArea($element);
434
                        ?>
-
 
435
						    </div>
431
                        ?>
436
						</div>
432
						</div>
437
						<div class="row">
433
						<div class="form-group">
438
                            <div class="col-12 mb-3 mt-3">
434
                      	<?php 
439
                      	<?php 
-
 
440
                            $element = $form->get('status');
435
                            $element = $form->get('status');
441
                            echo $this->formCheckbox($element);
Línea 436... Línea -...
436
                            echo $this->formCheckbox($element);
-
 
437
                        ?>
-
 
438
						</div>
-
 
439
								
-
 
440
        				<div class="form-group">
-
 
-
 
442
                        ?>
-
 
443
                            </div>
441
                    		<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
444
						</div>
Línea 442... Línea 445...
442
                    		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
445
								
443
                   		</div>
446
        		
-
 
447
     	      		
444
     	      		<?php echo $this->form()->closeTag($form); ?>
448
      		</div>
445
      		</div>
449
 
446
 
-
 
-
 
450
            <!-- Modal footer -->
447
            <!-- Modal footer -->
451
      		<div class="modal-footer">
448
      		<div class="modal-footer">
452
              <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
449
        		 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
453
                    		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
Línea 450... Línea 454...
450
      		</div>
454
      		</div>