From 1b84cdd7e45ee167f5cbcfb364ae59fec70eac5d Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Wed, 20 May 2009 07:41:07 +0000 Subject: [PATCH] API CHANGE Removed @deprecated 2.3 class HiddenFieldGroup git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@77397 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- forms/HiddenFieldGroup.php | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100755 forms/HiddenFieldGroup.php diff --git a/forms/HiddenFieldGroup.php b/forms/HiddenFieldGroup.php deleted file mode 100755 index 87c014702..000000000 --- a/forms/HiddenFieldGroup.php +++ /dev/null @@ -1,34 +0,0 @@ - tag, if the Title is set. - * @deprecated 2.3 - * @package forms - * @subpackage fields-structural - */ -class HiddenFieldGroup extends FieldGroup { - - /** - * Returns a set of 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 = ""; - foreach($fs as $subfield) { - $content .= $subfield->SmallFieldHolder() . " "; - } - $content .= ""; - - return $content; - } - function FieldHolder() { - return $this->renderWith("HiddenFieldHolder"); - } - -} - -?> \ No newline at end of file