| 158 | | public function get'.$col->getPhpName().'() |
|---|
| 159 | | { |
|---|
| 160 | | $obj = $this->getCurrent'.$className.'(); |
|---|
| 161 | | |
|---|
| 162 | | return ($obj ? $obj->get'.$col->getPhpName().'() : null); |
|---|
| 163 | | } |
|---|
| 164 | | |
|---|
| 165 | | public function set'.$col->getPhpName().'($value) |
|---|
| 166 | | { |
|---|
| 167 | | $this->getCurrent'.$className.'()->set'.$col->getPhpName().'($value); |
|---|
| | 158 | public function get'.$col->getPhpName().'($culture = null) |
|---|
| | 159 | { |
|---|
| | 160 | return $this->getCurrent'.$className.'($culture)->get'.$col->getPhpName().'(); |
|---|
| | 161 | } |
|---|
| | 162 | |
|---|
| | 163 | public function set'.$col->getPhpName().'($value, $culture = null) |
|---|
| | 164 | { |
|---|
| | 165 | $this->getCurrent'.$className.'($culture)->set'.$col->getPhpName().'($value); |
|---|