xref: /dokuwiki/lib/plugins/config/core/Setting/SettingFieldset.php (revision d4f83172d9533c4d84f450fe22ef630816b21d75)
10a5b05ebSAndreas Gohr<?php
20a5b05ebSAndreas Gohr
30a5b05ebSAndreas Gohrnamespace dokuwiki\plugin\config\core\Setting;
40a5b05ebSAndreas Gohr
50a5b05ebSAndreas Gohr/**
60a5b05ebSAndreas Gohr * A do-nothing class used to detect the 'fieldset' type.
70a5b05ebSAndreas Gohr *
80a5b05ebSAndreas Gohr * Used to start a new settings "display-group".
90a5b05ebSAndreas Gohr */
108c7c53b0SAndreas Gohrclass SettingFieldset extends Setting
118c7c53b0SAndreas Gohr{
120a5b05ebSAndreas Gohr    /** @inheritdoc */
13*d868eb89SAndreas Gohr    public function shouldHaveDefault()
14*d868eb89SAndreas Gohr    {
150a5b05ebSAndreas Gohr        return false;
160a5b05ebSAndreas Gohr    }
170a5b05ebSAndreas Gohr}
18