Делал адаптацию модуля на 2.0, и вот с чем столкнулся. И остальных приглашаю делиться нюансами, может будет полезно
$this->data[] на $data[]
$this->redirect на $this->response->redirect $this-> language ->load на $this->load->language render теперь стал
$data['column_left'] = $this->load->controller('common/column_left');
$data['column_right'] = $this->load->controller('common/column_right');
$data['content_top'] = $this->load->controller('common/content_top');
$data['content_bottom'] = $this->load->controller('common/content_bottom');
$data['footer'] = $this->load->controller('common/footer');
$data['header'] = $this->load->controller('common/header');
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/account/reviews.tpl')) {
$this->response->setOutput($this->load->view($this->config->get('config_template') . '/template/account/reviews.tpl', $data));
} else {
$this->response->setOutput($this->load->view('default/template/account/reviews.tpl', $data));
}
По мелочам:
- Пагинация в контроллере подключается без $pagination->text = $this->language->get('text_pagination');
- убрали separator в хлебных крошках