mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
load/save proxy paramters
This commit is contained in:
parent
0e4a819e2b
commit
cbf6afa6d2
|
@ -527,6 +527,9 @@ class Settings { /* {{{ */
|
|||
$this->_dropFolderDir = strval($tab["dropFolderDir"]);
|
||||
$this->_backupDir = strval($tab["backupDir"]);
|
||||
$this->_repositoryUrl = strval($tab["repositoryUrl"]);
|
||||
$this->_proxyUrl = strval($tab["proxyUrl"]);
|
||||
$this->_proxyUser = strval($tab["proxyUser"]);
|
||||
$this->_proxyPassword = strval($tab["proxyPassword"]);
|
||||
$this->_logFileEnable = Settings::boolVal($tab["logFileEnable"]);
|
||||
$this->_logFileRotation = strval($tab["logFileRotation"]);
|
||||
$this->_enableLargeFileUpload = Settings::boolVal($tab["enableLargeFileUpload"]);
|
||||
|
@ -874,6 +877,9 @@ class Settings { /* {{{ */
|
|||
$this->setXMLAttributValue($node, "dropFolderDir", $this->_dropFolderDir);
|
||||
$this->setXMLAttributValue($node, "backupDir", $this->_backupDir);
|
||||
$this->setXMLAttributValue($node, "repositoryUrl", $this->_repositoryUrl);
|
||||
$this->setXMLAttributValue($node, "proxyUrl", $this->_proxyUrl);
|
||||
$this->setXMLAttributValue($node, "proxyUser", $this->_proxyUser);
|
||||
$this->setXMLAttributValue($node, "proxyPassword", $this->_proxyPassword);
|
||||
$this->setXMLAttributValue($node, "logFileEnable", $this->_logFileEnable);
|
||||
$this->setXMLAttributValue($node, "logFileRotation", $this->_logFileRotation);
|
||||
$this->setXMLAttributValue($node, "enableLargeFileUpload", $this->_enableLargeFileUpload);
|
||||
|
|
Loading…
Reference in New Issue
Block a user