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