Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- function crearForm_pantSeguridad($prenda)
- {
- $form = $this->crearSelect('tipoPretina', 'Tipo de pretina', $prenda->getTiposPretinaPantalon(), $prenda->getTienePretina());
- $form .= '<h3>Opciones del pantalón</h3>';
- $form .= $this->crearCheckbox('tienePaleton', 'Con paletones', $prenda->getTienePaletones());
- $form .= $this->crearCheckbox('tieneCintaCostado', 'Con cinta de costado', $prenda->getTieneCintaCostado());
- return $form;
- }
- function crearForm_pantVestir($prenda)
- {
- $form = $this->crearSelect('tipoPretina', 'Tipo de pretina', $prenda->getTiposPretinaPantalon(), $prenda->getTienePretina());
- $form .= '<h3>Opciones del pantalón</h3>';
- $form .= $this->crearCheckbox('tienePaleton', 'Con paletones', $prenda->getTienePaletones());
- return $form;
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement