| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 51 | public function get( $name ) |
||
| 52 | { |
||
| 53 | if( !isset( $this->objects[$name] ) ) |
||
| 54 | { |
||
| 55 | $client = \Aimeos\Client\Html::create( $this->context, $name ); |
||
| 56 | $client->setView( $this->context->view() ); |
||
| 57 | $client->init(); |
||
| 58 | |||
| 59 | $this->objects[$name] = $client; |
||
| 60 | } |
||
| 61 | |||
| 62 | return $this->objects[$name]; |
||
| 63 | } |
||
| 65 |