I apologize in advance for asking the question that has been asked multiple times. Not exactly sure where to post my question? This question has been asked, but not answered. Other than the answer of it is ready when it is ready... Is there any target date for an Opencart 2.0 Release? 6 months ago we were told December, now we are close to July and no date? I fully understand that Github is updated regularly, but we all know that Github might not have a stable "official" release.
Any news would be appreciated.
Rewrite in the majority of cases. OCMOD is displacing vQmod:
https://github.com/opencart/opencart/wi ... ion-System
The old method of putting data in object properties and rendering from there has been replaced by a dedicated controller loader. So:
is now:
https://github.com/opencart/opencart/wi ... ion-System
The old method of putting data in object properties and rendering from there has been replaced by a dedicated controller loader. So:
Code: Select all
$this->data['foo'] = 'bar';
$this->children = array(
'common/header',
'common/footer'
);
$this->template = 'default/template/common/home.tpl';
$this->response->setOutput($this->render());
Code: Select all
$data['foo'] = 'bar';
$data['header'] = $this->load->controller('common/header');
$data['footer'] = $this->load->controller('common/footer');
$this->response->setOutput($this->load->view('default/template/common/home.tpl', $data));
-Ryan
Who is online
Users browsing this forum: No registered users and 83 guests