| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | protected function selectRound(Round $round) |
||
| 45 | { |
||
| 46 | $this->response->html('section-tontine-name', $round->tontine->name . ' - ' . $round->title); |
||
| 47 | |||
| 48 | // Set the round sidebar menu |
||
| 49 | $this->response->html('sidebar-menu-round', $this->renderView('parts.sidebar.round')); |
||
| 50 | $this->jq('a', '#sidebar-menu-round')->css('color', self::$activeMenuColor); |
||
| 51 | |||
| 52 | foreach(config('menu.round') as $menuId => $menuClass) |
||
| 53 | { |
||
| 54 | $this->jq($menuId)->click($this->rq($menuClass)->home()); |
||
| 55 | } |
||
| 58 |