2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2011-05-06 00:51:02 +02:00
|
|
|
* @deprecated 3.0 Please use {@link FieldList}.
|
2011-09-26 05:47:54 +02:00
|
|
|
*
|
2011-05-06 00:30:54 +02:00
|
|
|
* @package forms
|
2008-01-09 05:18:36 +01:00
|
|
|
* @subpackage fields-structural
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2011-05-06 00:51:02 +02:00
|
|
|
class FieldSet extends FieldList {
|
2007-11-23 02:10:19 +01:00
|
|
|
|
2011-10-28 03:36:20 +02:00
|
|
|
/**
|
2011-10-29 01:02:11 +02:00
|
|
|
* @deprecated 3.0 Use FieldList instead
|
2011-10-28 03:36:20 +02:00
|
|
|
*/
|
2011-05-06 00:51:02 +02:00
|
|
|
public function __construct($items = array()) {
|
2011-10-29 01:02:11 +02:00
|
|
|
Deprecation::notice('3.0', 'Use FieldList instead.');
|
2011-05-06 00:51:02 +02:00
|
|
|
parent::__construct(!is_array($items) || func_num_args() > 1 ? func_get_args(): $items);
|
2009-11-05 02:54:37 +01:00
|
|
|
}
|
|
|
|
}
|