Last active
December 11, 2015 06:29
-
-
Save jtarleton/4559824 to your computer and use it in GitHub Desktop.
Renders a symfony sfForm object for Twitter's Bootstrap framework
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
<!DOCTYPE html> | |
<html> | |
<head></head> | |
<body> | |
<form class="form-horizontal" action="<?php echo url_for('module/action') ?>" method="post"> | |
<h2>Set of fields</h2> | |
<?php foreach(array($formObj['field1'], $formObj['field2']) as $sfFormFieldObj): ?> | |
<?php printAsBootstrapForm($formObj, $sfFormFieldObj); ?> | |
<?php endforeach; ?> | |
</form> | |
</body> | |
</html> |
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 | |
/* | |
A decaffeinated version of my tbsFormRender helper function | |
Renders a symfony sfForm object for Twitter's Bootstrap framework: | |
http://twitter.github.com/bootstrap/ | |
*/ | |
function printAsBootstrapForm(sfForm $sfForm, sfFormField $sfFormFieldObj) | |
{ | |
if( $sfForm->isBound() ) | |
{ | |
if(!$sfFormFieldObj->isHidden()) | |
{ | |
if( $sfFormFieldObj->hasError()) | |
{ | |
// With red "error" styles | |
?> | |
<div class="control-group error"> | |
<label class="control-label" for="inputError"><?php echo $sfFormFieldObj->renderLabel() ?></label> | |
<div class="controls"> | |
<?php echo str_replace(PHP_EOL,'<br />', $sfFormFieldObj->render()); ?> | |
<span class="help-inline"><?php echo $sfFormFieldObj->renderError(); ?></span> | |
</div> | |
</div> | |
<?php | |
} | |
elseif(in_array($sfFormFieldObj->getName(), array_keys($sfForm->getErrorSchema()->getNamedErrors()))) | |
{ | |
// With red "error" styles | |
$n = $sfFormFieldObj->getName(); | |
$objs = $sfForm->getErrorSchema()->getNamedErrors(); | |
?> | |
<div class="control-group error"> | |
<label class="control-label" for="inputError"><?php echo $sfFormFieldObj->renderLabel() ?></label> | |
<div class="controls"> | |
<?php echo str_replace(PHP_EOL,'<br />', $sfFormFieldObj->render()); ?> | |
<span class="help-inline"><?php if($objs[$n] instanceof sfValidatorError): | |
echo $objs[$n]->getMessage(); | |
else: | |
echo $objs[$n]->current()->__toString(); | |
endif; ?></span> | |
</div> | |
</div> | |
<?php | |
} | |
else | |
{ | |
// With green "success" styles | |
?> | |
<div class="control-group success"> | |
<label class="control-label" for="inputSuccess"><?php echo $sfFormFieldObj->renderLabel() ?></label> | |
<div class="controls"> | |
<?php echo str_replace(PHP_EOL,'<br />', $sfFormFieldObj->render()) ?> | |
<span class="help-inline"></span> | |
</div> | |
</div><?php | |
} | |
} | |
} | |
else | |
{ | |
if(!$sfFormFieldObj->isHidden()) | |
{ | |
// au naturel | |
?> | |
<div class="control-group"> | |
<label class="control-label" for=""><?php echo $sfFormFieldObj->renderLabel() ?></label> | |
<div class="controls"> | |
<?php echo str_replace(PHP_EOL,'<br />', $sfFormFieldObj->render()) ?> | |
</div> | |
</div><?php | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment