mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
60860cc1b9
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@56212 467b73ca-7a2a-4603-9d3b-597d59a354a9
33 lines
938 B
PHP
Executable File
33 lines
938 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.
|
|
* @package forms
|
|
* @subpackage fields-structural
|
|
*/
|
|
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");
|
|
}
|
|
|
|
}
|
|
|
|
?>
|