Rendered view is not displaying in my back office in PS 1.7
问题 I am trying to create a view in the back office tab that I created in the installation of my Module. My Module adds the tab like this: protected function _installTabs() { if(!$tabId = \Tab::getIdFromClassName('IezonPortfolio')) { $tab = new \Tab(); $tab->class_name = 'IezonPortfolio'; $tab->module = $this->name; $tab->id_parent = \Tab::getIdFromClassName('ShopParameters'); $tab->active = 1; foreach (Language::getLanguages(false) as $lang): $tab->name[(int) $lang['id_lang']] = 'My Portfolio';