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