1<?php 2 3namespace dokuwiki\plugin\config\core\Setting; 4 5/** 6 * Class setting_sepchar 7 */ 8class SettingSepchar extends SettingMultichoice 9{ 10 11 /** @inheritdoc */ 12 public function __construct($key, $param = null) 13 { 14 $str = '_-.'; 15 for ($i = 0; $i < strlen($str); $i++) $this->choices[] = $str[$i]; 16 17 // call foundation class constructor 18 parent::__construct($key, $param); 19 } 20} 21