blob: 805ab11c9c79d47db82a18cc95f626695d309136 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace dokuwiki\plugin\config\core\Setting;
/**
* Class setting_no_class
* A do-nothing class used to detect settings with a missing setting class.
* Used internaly to hide undefined settings, and generate the undefined settings list.
*/
class SettingNoClass extends SettingUndefined
{
protected $errorMessage = '_msg_setting_no_class';
}
|