blob: 0d5c1c73404fefaebbf6ade99d5a2c95a30255e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
namespace dokuwiki\plugin\config\core\Setting;
/**
* 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 SettingNoKnownClass extends SettingUndefined
{
protected $errorMessage = '_msg_setting_no_known_class';
}
|