silverstripe-framework/forms/HiddenFieldGroup.php
Hayden Smith 4a5d9b03f8 Moved Sapphire module to open source path
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@39001 467b73ca-7a2a-4603-9d3b-597d59a354a9
2007-07-19 10:40:28 +00:00

31 lines
887 B
PHP
Executable File

<?php
/**
* Lets you include a nested group of fields inside a template.
* This control gives you more flexibility over form layout.
*
* Note: the child fields within a field group aren't rendered using DefaultFieldHolder. Instead,
* SmallFieldHolder() is called, which just prefixes $Field with a <label> tag, if the Title is set.
*/
class HiddenFieldGroup extends FieldGroup {
/**
* Returns a set of <span class="subfield"> tags, each containing a sub-field.
* You can also use <% control FieldSet %>, if you'd like more control over the generated HTML
*/
function Field() {
$fs = $this->FieldSet();
$content = "<span class=\"fieldgroup\">";
foreach($fs as $subfield) {
$content .= $subfield->SmallFieldHolder() . " ";
}
$content .= "</span>";
return $content;
}
function FieldHolder() {
return $this->renderWith("HiddenFieldHolder");
}
}
?>