SettingNoKnownClass.php 343 B

1234567891011
  1. <?php
  2. namespace dokuwiki\plugin\config\core\Setting;
  3. /**
  4. * A do-nothing class used to detect settings with a missing setting class.
  5. * Used internaly to hide undefined settings, and generate the undefined settings list.
  6. */
  7. class SettingNoKnownClass extends SettingUndefined {
  8. protected $errorMessage = '_msg_setting_no_known_class';
  9. }