| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function render($context) |
||
| 38 | { |
||
| 39 | $values = array(); |
||
| 40 | |||
| 41 | foreach ($this->vars as $var) { |
||
| 42 | $actualRow = $this->getRow()->getActualRow(); |
||
| 43 | $values[] = $actualRow[$var]; |
||
| 44 | } |
||
| 45 | $value = vsprintf($this->value, $values); |
||
| 46 | |||
| 47 | $this->getRow()->addVarAttr($this->name, $value); |
||
| 48 | return $context; |
||
| 49 | } |
||
| 50 | } |
||
| 51 |