SyncProperty: new setter method, fix tabs
This commit is contained in:
parent
9d111d0db0
commit
e73413fc25
|
@ -16,13 +16,19 @@ class SyncProperty extends DbObject
|
|||
'id' => null,
|
||||
'rule_id' => null,
|
||||
'source_id' => null,
|
||||
'source_expression' => null,
|
||||
'destination_field' => null,
|
||||
'priority' => null,
|
||||
'filter_expression' => null,
|
||||
'merge_policy' => null
|
||||
'source_expression' => null,
|
||||
'destination_field' => null,
|
||||
'priority' => null,
|
||||
'filter_expression' => null,
|
||||
'merge_policy' => null
|
||||
);
|
||||
|
||||
public function setSource_column($value)
|
||||
{
|
||||
$this->source_expression = '$(' . $value . ')';
|
||||
return $this;
|
||||
}
|
||||
|
||||
/*
|
||||
protected $properties = array();
|
||||
|
||||
|
|
Loading…
Reference in New Issue