Exemplo n.º 1
0
 public static function findContent($navId)
 {
     $lang = Yii::$app->composition->getKey('langShortCode');
     $langId = Lang::getLangIdByShortCode($lang);
     $item = NavItem::find()->where(['lang_id' => $langId, 'nav_id' => $navId])->one();
     return $item ? $item->getContent() : false;
 }