aboutsummaryrefslogtreecommitdiffstats
path: root/public/catalog/controller/extension/module/html.php
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-08-18 21:14:58 -0500
committerJesús <heckyel@hyperbola.info>2019-08-18 21:14:58 -0500
commit2eed7b082f83630301e51f57ca8394de228a8605 (patch)
tree1d19962d22d30f99317d9276e4bae7744fc93fc2 /public/catalog/controller/extension/module/html.php
downloadlibrecart-2eed7b082f83630301e51f57ca8394de228a8605.tar.lz
librecart-2eed7b082f83630301e51f57ca8394de228a8605.tar.xz
librecart-2eed7b082f83630301e51f57ca8394de228a8605.zip
first commit
Diffstat (limited to 'public/catalog/controller/extension/module/html.php')
-rw-r--r--public/catalog/controller/extension/module/html.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/public/catalog/controller/extension/module/html.php b/public/catalog/controller/extension/module/html.php
new file mode 100644
index 0000000..bf32060
--- /dev/null
+++ b/public/catalog/controller/extension/module/html.php
@@ -0,0 +1,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);
+ }
+ }
+} \ No newline at end of file