public function run()
 {
     $currentLang = Yii::$app->composition['langShortCode'];
     // Get current link
     $current = Yii::$app->menu->current;
     $rule = Yii::$app->menu->currentUrlRule;
     $items = [];
     // Loop through all languages
     foreach (Yii::$app->adminLanguage->getLanguages() as $lang) {
         // Find item of current link with the lang
         $item = Yii::$app->menu->find()->where(['nav_id' => $current->navId])->lang($lang['short_code'])->with('hidden')->one();
         if ($item) {
             $link = $item->link;
             if ($item->type == 2 && !empty($rule)) {
                 $routeParams = [$rule['route']];
                 foreach ($rule['params'] as $key => $value) {
                     $routeParams[$key] = $value;
                 }
                 $compositionObject = Yii::createObject(Composition::className());
                 $compositionObject->off(Composition::EVENT_AFTER_SET);
                 $compositionObject['langShortCode'] = $lang['short_code'];
                 $link = Yii::$app->urlManager->createMenuItemUrl($routeParams, $item->id, $compositionObject);
             }
             $items[] = ['href' => $link, 'isCurrent' => $currentLang == $lang['short_code'], 'language' => $lang];
         } else {
             $items[] = ['href' => Yii::$app->urlManager->prependBaseUrl($lang['short_code']), 'isCurrent' => $currentLang == $lang['short_code'], 'language' => $lang];
         }
     }
     return $this->render('index', ['items' => $items, 'currentLanguage' => Yii::$app->adminLanguage->getLanguageByShortCode($currentLang)]);
 }