Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 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::create( 'Flow', $conf, $this->cache ); |
||
54 | } |
||
55 | |||
56 | return $this->object; |
||
57 | } |
||
59 |