Last active
December 23, 2015 08:59
-
-
Save BinaryKitten/6611058 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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