[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/lib/plugins/config/core/Setting/ -> SettingNoDefault.php (source)

   1  <?php
   2  
   3  namespace dokuwiki\plugin\config\core\Setting;
   4  
   5  /**
   6   * Class setting_no_default
   7   *
   8   * A do-nothing class used to detect settings with no default value.
   9   * Used internaly to hide undefined settings, and generate the undefined settings list.
  10   */
  11  class SettingNoDefault extends SettingUndefined
  12  {
  13      protected $errorMessage = '_msg_setting_no_default';
  14  }