| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Modules\Menu\Events\Handlers; |
||
| 24 | public function handle(MenuWasCreated $event) |
||
| 25 | { |
||
| 26 | $data = [ |
||
| 27 | 'menu_id' => $event->menu->id, |
||
| 28 | 'position' => 0, |
||
| 29 | 'is_root' => true, |
||
| 30 | ]; |
||
| 31 | |||
| 32 | foreach ($this->getEnabledLocales() as $locale) { |
||
| 33 | $data[$locale]['title'] = 'root'; |
||
| 34 | } |
||
| 35 | |||
| 36 | $this->menuItem->create($data); |
||
| 37 | } |
||
| 38 | |||
| 48 |