Is there a way to read everything from a language with Opencart?
At the moment, I have to:
Controller $this->load->language('help'); $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['tab1'] = $this->language->get('tab1');
Language file
<?php // Heading $_['heading_title'] = 'Help'; $_['tab1'] = 'Account'; ?>
opencart
John magnolia
source share