Created
April 13, 2011 05:43
-
-
Save bshaffer/917023 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 use_stylesheets_for_form($form) ?> | |
<?php use_javascripts_for_form($form) ?> | |
<div class="sf_admin_form"> | |
<?php echo form_tag_for($form, '@sf_guard_user_sf_guard_user_old') ?> | |
<?php echo $form->renderHiddenFields(false) ?> | |
<?php if ($form->hasGlobalErrors()): ?> | |
<?php echo $form->renderGlobalErrors() ?> | |
<?php endif; ?> | |
<?php foreach ($configuration->getFormFields($form, $form->isNew() ? 'new' : 'edit') as $fieldset => $fields): ?> | |
<?php include_partial('sf_guard_user_old/form_fieldset', array('sf_guard_user' => $sf_guard_user, 'form' => $form, 'fields' => $fields, 'fieldset' => $fieldset)) ?> | |
<?php endforeach; ?> | |
<?php include_partial('sf_guard_user_old/form_actions', array('sf_guard_user' => $sf_guard_user, 'form' => $form, 'configuration' => $configuration, 'helper' => $helper)) ?> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment