html.php (568B)
1 <?php 2 class ControllerExtensionModuleHTML extends Controller { 3 public function index($setting) { 4 if (isset($setting['module_description'][$this->config->get('config_language_id')])) { 5 $data['heading_title'] = html_entity_decode($setting['module_description'][$this->config->get('config_language_id')]['title'], ENT_QUOTES, 'UTF-8'); 6 $data['html'] = html_entity_decode($setting['module_description'][$this->config->get('config_language_id')]['description'], ENT_QUOTES, 'UTF-8'); 7 8 return $this->load->view('extension/module/html', $data); 9 } 10 } 11 }