* @copyright 2007-2014 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 ProductPaymentLogos extends Module { public function __construct() { $this->name = 'productpaymentlogos'; $this->tab = 'front_office_features'; $this->version = '1.3.6'; $this->author = 'PrestaShop'; $this->need_instance = 0; $this->bootstrap = true; parent::__construct(); $this->displayName = $this->l('Product payment logos block'); $this->description = $this->l('Displays the logos of the available payment systems on the product page.'); } public function install() { Configuration::updateValue('PRODUCTPAYMENTLOGOS_IMG', 'payment-logo.png'); Configuration::updateValue('PRODUCTPAYMENTLOGOS_LINK', ''); Configuration::updateValue('PRODUCTPAYMENTLOGOS_TITLE', ''); $this->_clearCache('productpaymentlogos.tpl'); return parent::install() && $this->registerHook('displayProductButtons') && $this->registerHook('header'); } public function uninstall() { Configuration::deleteByName('PRODUCTPAYMENTLOGOS_IMG'); Configuration::deleteByName('PRODUCTPAYMENTLOGOS_LINK'); Configuration::deleteByName('PRODUCTPAYMENTLOGOS_TITLE'); return parent::uninstall(); } public function hookDisplayProductButtons($params) { if (Configuration::get('PS_CATALOG_MODE')) return; if (!$this->isCached('productpaymentlogos.tpl', $this->getCacheId())) { $this->smarty->assign(array( 'banner_img' => 'img/'.Configuration::get('PRODUCTPAYMENTLOGOS_IMG'), 'banner_link' => Configuration::get('PRODUCTPAYMENTLOGOS_LINK'), 'banner_title' => Configuration::get('PRODUCTPAYMENTLOGOS_TITLE') )); } return $this->display(__FILE__, 'productpaymentlogos.tpl', $this->getCacheId()); } public function hookHeader($params) { if (Configuration::get('PS_CATALOG_MODE')) return; $this->context->controller->addCSS($this->_path.'productpaymentlogos.css', 'all'); } public function postProcess() { if (Tools::isSubmit('submitStoreConf')) { Configuration::updateValue('PRODUCTPAYMENTLOGOS_LINK', Tools::getValue('PRODUCTPAYMENTLOGOS_LINK')); Configuration::updateValue('PRODUCTPAYMENTLOGOS_TITLE', Tools::getValue('PRODUCTPAYMENTLOGOS_TITLE')); if (isset($_FILES['PRODUCTPAYMENTLOGOS_IMG']) && isset($_FILES['PRODUCTPAYMENTLOGOS_IMG']['tmp_name']) && !empty($_FILES['PRODUCTPAYMENTLOGOS_IMG']['tmp_name'])) { if (ImageManager::validateUpload($_FILES['PRODUCTPAYMENTLOGOS_IMG'], 4000000)) return $this->displayError($this->l('Invalid image')); else { $ext = Tools::substr($_FILES['PRODUCTPAYMENTLOGOS_IMG']['name'], Tools::strrpos($_FILES['PRODUCTPAYMENTLOGOS_IMG']['name'], '.') + 1); $file_name = md5($_FILES['PRODUCTPAYMENTLOGOS_IMG']['name']).'.'.$ext; if (!move_uploaded_file($_FILES['PRODUCTPAYMENTLOGOS_IMG']['tmp_name'], dirname(__FILE__).'/img/'.$file_name)) return $this->displayError($this->l('An error occurred while attempting to upload the file.')); else { $file_path = dirname(__FILE__).'/img/'.Configuration::get('PRODUCTPAYMENTLOGOS_IMG'); if (Configuration::hasContext('PRODUCTPAYMENTLOGOS_IMG', null, Shop::getContext()) && Configuration::get('PRODUCTPAYMENTLOGOS_IMG') != $file_name && file_exists($file_path) ) unlink($file_path); Configuration::updateValue('PRODUCTPAYMENTLOGOS_IMG', $file_name); $this->_clearCache('productpaymentlogos.tpl'); Tools::redirectAdmin('index.php?tab=AdminModules&conf=6&configure='.$this->name.'&token='.Tools::getAdminTokenLite('AdminModules')); } } } $this->_clearCache('productpaymentlogos.tpl'); } return ''; } public function getContent() { return $this->postProcess().$this->renderForm(); } public function renderForm() { $fields_form = array( 'form' => array( 'legend' => array( 'title' => $this->l('Settings'), 'icon' => 'icon-cogs' ), 'input' => array( array( 'type' => 'text', 'label' => $this->l('Block heading'), 'name' => 'PRODUCTPAYMENTLOGOS_TITLE', 'desc' => $this->l('You can choose to add a heading above the logos.') ), array( 'type' => 'file', 'label' => $this->l('Block image'), 'name' => 'PRODUCTPAYMENTLOGOS_IMG', 'thumb' => '../modules/'.$this->name.'/img/'.Configuration::get('PRODUCTPAYMENTLOGOS_IMG'), ), array( 'type' => 'text', 'label' => $this->l('Image link'), 'name' => 'PRODUCTPAYMENTLOGOS_LINK', 'desc' => $this->l('You can either upload your own image using the form above, or link to it from the "Image link" option.') ) ), 'submit' => array( 'title' => $this->l('Save'), ) ), ); $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; $helper->identifier = $this->identifier; $helper->submit_action = 'submitStoreConf'; $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( 'PRODUCTPAYMENTLOGOS_IMG' => Tools::getValue('PRODUCTPAYMENTLOGOS_IMG', Configuration::get('PRODUCTPAYMENTLOGOS_IMG')), 'PRODUCTPAYMENTLOGOS_LINK' => Tools::getValue('PRODUCTPAYMENTLOGOS_LINK', Configuration::get('PRODUCTPAYMENTLOGOS_LINK')), 'PRODUCTPAYMENTLOGOS_TITLE' => Tools::getValue('PRODUCTPAYMENTLOGOS_TITLE', Configuration::get('PRODUCTPAYMENTLOGOS_TITLE')), ); } }