dokuwiki/lib/plugins/config/core/Setting/SettingSavedir.php
<?php
namespace dokuwiki\plugin\config\core\Setting;
/**
* Class setting_savedir
*/
class SettingSavedir extends SettingString
{
/** @inheritdoc */
public function update($input)
{
if ($this->isProtected()) return false;
$value = is_null($this->local) ? $this->default : $this->local;
if ($value == $input) return false;
if (!init_path($input)) {
$this->error = true;
$this->input = $input;
return false;
}
$this->local = $input;
return true;
}
}