Как вывести статьи в шапку с учетом переводом?
У меня catalog/information состоит из статей About us
Gallery
Delivery
итд
Я хочу в шапку вывести только About us и Gallery с учетом их перевода на разные языки.
- В языковые файл добавила text_about, text_gallery
- В header.tpl добавила пункты меню
<li><a class="<?php if ((isset($this->request->get['route']) && $this->request->get['route']="information/information") && (isset($this->request->get['information_id']) && $this->request->get['information_id']="4")) {echo "active";} ?>" href="http://www.felicizia.it/index.php?route=information/information&information_id=4"><span><?php echo $text_about; ?></span></a></li>
<li><a class="<?php if ((isset($this->request->get['route']) && $this->request->get['route']="information/information") && (isset($this->request->get['information_id']) && $this->request->get['information_id']="12")) {echo "active";} ?>" href="http://www.felicizia.it/index.php?route=information/information&information_id=12"><span><?php echo $text_gallery; ?></span></a></li>
Куда в controller header.php надо добавить
$data['text_about'] = $this->language->get('text_about');
$data['text_gallery'] = $this->language->get('text_gallery');
??? Пыталась добавлять в разные части и постоянно выдает ошибку Undefined variable
Что я делаю не так?