Advertisement
correJuliocorre

Formulario_PantalonesV1

Jul 29th, 2011
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.87 KB | None | 0 0
  1. <?
  2.            
  3.     function crearForm_pantSeguridad($prenda)
  4.    
  5.             {
  6.                 $form = $this->crearSelect('tipoPretina', 'Tipo de pretina', $prenda->getTiposPretinaPantalon(), $prenda->getTienePretina());
  7.            
  8.                 $form .= '<h3>Opciones del pantalón</h3>';
  9.            
  10.                 $form .= $this->crearCheckbox('tienePaleton', 'Con paletones', $prenda->getTienePaletones());
  11.                
  12.                 $form .= $this->crearCheckbox('tieneCintaCostado', 'Con cinta de costado', $prenda->getTieneCintaCostado());
  13.                
  14.                 return $form;
  15.             }
  16.    
  17.     function crearForm_pantVestir($prenda)
  18.    
  19.    
  20.         {
  21.                 $form = $this->crearSelect('tipoPretina', 'Tipo de pretina', $prenda->getTiposPretinaPantalon(), $prenda->getTienePretina());
  22.            
  23.                 $form .= '<h3>Opciones del pantalón</h3>';
  24.            
  25.                 $form .= $this->crearCheckbox('tienePaleton', 'Con paletones', $prenda->getTienePaletones());
  26.                                
  27.                 return $form;
  28.             }
  29.    
  30. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement