SettingFieldset.php 310 B

1234567891011121314151617
  1. <?php
  2. namespace dokuwiki\plugin\config\core\Setting;
  3. /**
  4. * A do-nothing class used to detect the 'fieldset' type.
  5. *
  6. * Used to start a new settings "display-group".
  7. */
  8. class SettingFieldset extends Setting {
  9. /** @inheritdoc */
  10. public function shouldHaveDefault() {
  11. return false;
  12. }
  13. }