Example #1
0
 public function __construct($items = array())
 {
     // user_error(
     // 	'FieldSet is deprecated, please use FieldList instead.', E_USER_NOTICE
     // );
     parent::__construct(!is_array($items) || func_num_args() > 1 ? func_get_args() : $items);
 }
Example #2
0
 /**
  * @deprecated 3.0 Use FieldList instead
  */
 public function __construct($items = array())
 {
     Deprecation::notice('3.0', 'Use FieldList instead.');
     parent::__construct(!is_array($items) || func_num_args() > 1 ? func_get_args() : $items);
 }