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