Skip to content

Commit

Permalink
WIP: Finishing file import
Browse files Browse the repository at this point in the history
  • Loading branch information
dasistwas committed Oct 15, 2023
1 parent ed3d112 commit 338883a
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions rule/ftpsyncfiles/rule_class.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,14 @@ class datalynx_rule_ftpsyncfiles extends datalynx_rule_base {
*/
public function __construct($df = 0, $rule = 0) {
parent::__construct($df, $rule);
$this->sftpsetting = unserialize($this->rule->param2);
$this->sftpserver = $this->sftpsetting['sftpserver'];
$this->sftpport = $this->sftpsetting['sftpport'];
$this->sftpusername = $this->sftpsetting['sftpusername'];
$this->sftppassword = $this->sftpsetting['sftppassword'];
$this->sftppath = $this->sftpsetting['sftppath'];
if (isset($this->rule->param2)) {
$this->sftpsetting = unserialize($this->rule->param2);
$this->sftpserver = $this->sftpsetting['sftpserver'];
$this->sftpport = $this->sftpsetting['sftpport'];
$this->sftpusername = $this->sftpsetting['sftpusername'];
$this->sftppassword = $this->sftpsetting['sftppassword'];
$this->sftppath = $this->sftpsetting['sftppath'];
}
$this->matchingfield = $this->rule->param7;
$this->teammemberfieldid = $this->rule->param8;
$this->authorid = $this->rule->param9;
Expand Down

0 comments on commit 338883a

Please sign in to comment.