Skip to content

Instantly share code, notes, and snippets.

@BinaryKitten
Last active December 23, 2015 08:59
Show Gist options
  • Save BinaryKitten/6611058 to your computer and use it in GitHub Desktop.
Save BinaryKitten/6611058 to your computer and use it in GitHub Desktop.
<?php $this->form->prepare(); ?>
<div class="row">
<!-- Contenido seleccionado en el menu de la izquierda -->
<div class="col-md-9 col-md-push-3">
<div id="navigation_wrapper" style="display:none" class="navigation_content">
<?php echo $this->form()->openTag($this->form) . PHP_EOL; ?>
<?php foreach($this->form->getElements() as $formElement):?>
<div class="form-group">
<?php echo $this->formLabel($formElement). PHP_EOL; ?>
<div class="col-lg-3">
<?php echo $this->formElement($formElement). PHP_EOL; ?>
</div>
</div>
<?php endforeach;?>
<?php echo $this->formSubmit($this->form->get('submit')) . PHP_EOL; ?>
<?php echo $this->form()->closeTag() . PHP_EOL; ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment