SyncProperty: new setter method, fix tabs

This commit is contained in:
Thomas Gelf 2015-11-02 09:11:13 +01:00
parent 9d111d0db0
commit e73413fc25
1 changed files with 11 additions and 5 deletions

View File

@ -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();