From 8f3b3fedaab0df542ed67ae2d5613f090f5d8446 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 3 Oct 2008 15:55:39 +0000 Subject: [PATCH] MINOR Documentation git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63616 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- forms/FieldSet.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/forms/FieldSet.php b/forms/FieldSet.php index 27c750c5d..1f0bee4ca 100755 --- a/forms/FieldSet.php +++ b/forms/FieldSet.php @@ -15,8 +15,17 @@ class FieldSet extends DataObjectSet { * @var array */ protected $sequentialSet; + + /** + * @var array + */ protected $sequentialSaveableSet; + /** + * @todo Documentation + */ + protected $containerField; + public function __construct($items = null) { // if the first parameter is not an array, or we have more than one parameter, collate all parameters to an array // otherwise use the passed array @@ -148,7 +157,7 @@ class FieldSet extends DataObjectSet { * Remove a field from this FieldSet by Name. * The field could also be inside a CompositeField. * - * @param string $fieldName The name of the field + * @param string $fieldName The name of the field or tab * @param boolean $dataFieldOnly If this is true, then a field will only * be removed if it's a data field. Dataless fields, such as tabs, will * be left as-is.