| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 47 | protected function getObject() |
||
| 48 | { |
||
| 49 | if( !isset( $this->object ) ) |
||
| 50 | { |
||
| 51 | $siteid = $this->context->getLocale()->getSiteId(); |
||
| 52 | $conf = array( 'siteid' => $this->context->getConfig()->get( 'madmin/cache/prefix' ) . $siteid ); |
||
| 53 | $this->object = \Aimeos\MW\Cache\Factory::createManager( 'Typo3', $conf, $this->cache ); |
||
| 54 | } |
||
| 55 | |||
| 56 | return $this->object; |
||
| 57 | } |
||
| 58 | } |
||
| 59 |