Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | public function compose(View $view) |
||
39 | { |
||
40 | $segments = $this->parseSegments(); |
||
41 | $breadcrumbs_lang = Lang::get('common/breadcrumbs')['applicant']; |
||
42 | |||
43 | if (WhichPortal::isManagerPortal()) { |
||
44 | $segments = $segments->slice(1); |
||
45 | $breadcrumbs_lang = Lang::get('common/breadcrumbs')['manager']; |
||
46 | } |
||
47 | |||
48 | $view->with('breadcrumbs', $segments); |
||
49 | $view->with('breadcrumbs_lang', $breadcrumbs_lang); |
||
50 | } |
||
66 |