Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
28 | public function setView( \Aimeos\MW\View\Iface $view ) |
||
29 | { |
||
30 | $extdir = dirname( dirname( dirname( dirname( dirname( dirname( dirname( dirname( __DIR__ ) ) ) ) ) ) ) ); |
||
31 | $aimeos = new \Aimeos\Bootstrap( array( $extdir ) ); |
||
32 | |||
33 | $view->pageSites = $this->getSites(); |
||
34 | $view->pageLanguages = $aimeos->getI18nList( 'admin' ); |
||
35 | |||
36 | $this->getClient()->setView( $view ); |
||
37 | return $this; |
||
38 | } |
||
39 | |||
61 |