mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
17 lines
228 B
PHP
17 lines
228 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Specifies that this ends a group of fields
|
||
|
*/
|
||
|
class EditableFieldGroup extends EditableFormField {
|
||
|
|
||
|
/**
|
||
|
* Disable selection of group class
|
||
|
*
|
||
|
* @config
|
||
|
* @var bool
|
||
|
*/
|
||
|
private static $hidden = true;
|
||
|
|
||
|
}
|