Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 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->getView() ); |
||
57 | $client->process(); |
||
58 | |||
59 | $this->objects[$name] = $client; |
||
60 | } |
||
61 | |||
62 | return $this->objects[$name]; |
||
63 | } |
||
64 | } |
||
65 |