config['used_thesaurus']){
$this->config['used_thesaurus'] = $thesaurus_default;
}
$result.= "
".$this->msg['webdav_yes']." config['only_with_notices'] ? "checked='checked'" : "")."/>
".$this->msg['webdav_no']." config['only_with_notices'] ? "" : "checked='checked'")."/>
";
$result.= $this->get_collections_tree();
return $result;
}
public function get_config_form_script() {
return $this->get_collections_tree_script();
}
public static function update_config_from_form(){
global $used_thesaurus;
global $only_with_notices;
return array_merge(parent::update_config_from_form(), array(
'used_thesaurus' => $used_thesaurus,
'only_with_notices' => $only_with_notices
));
}
}