diff --git a/modules/blockquickview/blockquickview.php b/modules/blockquickview/blockquickview.php deleted file mode 100644 index 5e0119588..000000000 --- a/modules/blockquickview/blockquickview.php +++ /dev/null @@ -1,133 +0,0 @@ - -* @copyright 2007-2013 PrestaShop SA -* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) -* International Registered Trademark & Property of PrestaShop SA -*/ - -if (!defined('_PS_VERSION_')) - exit; - -class Blockquickview extends Module -{ - public function __construct() - { - $this->name = 'blockquickview'; - $this->tab = 'front_office_features'; - $this->version = '1.0'; - parent::__construct(); - $this->displayName = $this->l('Quick view'); - $this->description = $this->l('Add Quick information about product.'); - } - - public function install() - { - Configuration::updateValue('PS_QUICK_VIEW',1); - if (!parent::install()) - return false; - return true; - } - - public function uninstall() - { - if (!parent::uninstall() OR - !Configuration::deleteByName('PS_QUICK_VIEW')) - return false; - else return true; - } - - - public function getContent() - { - $html = ''; - // If we try to update the settings - if (Tools::isSubmit('submitModule')) - { - Configuration::updateValue('PS_QUICK_VIEW', Tools::getValue('PS_QUICK_VIEW')); - $html .= $this->displayConfirmation($this->l('Configuration updated')); - } - $html .= $this->renderForm(); - return $html; - } - - public function renderForm() - { - $fields_form = array( - 'form' => array( - 'legend' => array( - 'title' => $this->l('Settings'), - 'icon' => 'icon-cogs' - ), - 'input' => array( - array( - 'type' => 'switch', - 'label' => $this->l('Display Quick view'), - 'name' => 'PS_QUICK_VIEW', - 'values' => array( - array( - 'id' => 'active_on', - 'value' => 1, - 'label' => $this->l('Enabled') - ), - array( - 'id' => 'active_off', - 'value' => 0, - 'label' => $this->l('Disabled') - ) - ), - ), - ), - 'submit' => array( - 'title' => $this->l('Save'), - 'class' => 'btn btn-primary') - ), - ); - - $helper = new HelperForm(); - $helper->show_toolbar = false; - $helper->table = $this->table; - $lang = new Language((int)Configuration::get('PS_LANG_DEFAULT')); - $helper->default_form_language = $lang->id; - $helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') ? Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') : 0; - $this->fields_form = array(); - - $helper->identifier = $this->identifier; - $helper->submit_action = 'submitModule'; - $helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false).'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name; - $helper->token = Tools::getAdminTokenLite('AdminModules'); - $helper->tpl_vars = array( - 'fields_value' => $this->getConfigFieldsValues(), - 'languages' => $this->context->controller->getLanguages(), - 'id_language' => $this->context->language->id - ); - - return $helper->generateForm(array($fields_form)); - } - - public function getConfigFieldsValues() - { - return array( - 'PS_QUICK_VIEW' => Tools::getValue('PS_QUICK_VIEW', Configuration::get('PS_QUICK_VIEW')), - ); - - } -} \ No newline at end of file diff --git a/modules/blockquickview/config.xml b/modules/blockquickview/config.xml deleted file mode 100644 index 5d75d80b9..000000000 --- a/modules/blockquickview/config.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - blockquickview - - - - - - 1 - 1 - - \ No newline at end of file diff --git a/modules/blockquickview/index.php b/modules/blockquickview/index.php deleted file mode 100644 index 07830d90c..000000000 --- a/modules/blockquickview/index.php +++ /dev/null @@ -1,35 +0,0 @@ - -* @copyright 2007-2013 PrestaShop SA -* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) -* International Registered Trademark & Property of PrestaShop SA -*/ - -header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); -header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); - -header('Cache-Control: no-store, no-cache, must-revalidate'); -header('Cache-Control: post-check=0, pre-check=0', false); -header('Pragma: no-cache'); - -header('Location: ../../'); -exit; \ No newline at end of file diff --git a/modules/blockquickview/logo.gif b/modules/blockquickview/logo.gif deleted file mode 100644 index bc0ae8b2c..000000000 Binary files a/modules/blockquickview/logo.gif and /dev/null differ diff --git a/modules/blockquickview/logo.png b/modules/blockquickview/logo.png deleted file mode 100644 index 3702fd527..000000000 Binary files a/modules/blockquickview/logo.png and /dev/null differ diff --git a/modules/blockquickview/translations/index.php b/modules/blockquickview/translations/index.php deleted file mode 100644 index 3f6561f72..000000000 --- a/modules/blockquickview/translations/index.php +++ /dev/null @@ -1,35 +0,0 @@ - -* @copyright 2007-2013 PrestaShop SA -* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) -* International Registered Trademark & Property of PrestaShop SA -*/ - -header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); -header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); - -header("Cache-Control: no-store, no-cache, must-revalidate"); -header("Cache-Control: post-check=0, pre-check=0", false); -header("Pragma: no-cache"); - -header("Location: ../"); -exit; \ No newline at end of file