/home/sharedstore/.trash/modules/cz_brandlogo
NameSizeModeActions
translations/-0755rm
views/-0755rm
config.xml5200644editdlrm
cz_brandlogo.php92870644editdlrm
index.php13390644editdlrm
logo.png25890644editdlrm
Edit: /home/sharedstore/.trash/modules/cz_brandlogo/cz_brandlogo.php (9287B)
* @copyright 2007-2016 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registred Trademark & Property of PrestaShop SA */ use PrestaShop\PrestaShop\Core\Module\WidgetInterface; if (!defined('_PS_VERSION_')) { exit; } class Cz_Brandlogo extends Module implements WidgetInterface { protected $templateFile; public function __construct() { $this->name = 'cz_brandlogo'; $this->tab = 'front_office_features'; $this->version = '1.0.0'; $this->author = 'Codezeel'; $this->need_instance = 0; $this->bootstrap = true; parent::__construct(); $this->displayName = $this->trans( 'CZ - Brand Logo', array(), 'Modules.Brandlogo' ); $this->description = $this->trans( 'Displays manufacture as slider or grid in the central column of your homepage.', array(), 'Modules.Brandlogo' ); $this->ps_versions_compliancy = array('min' => '1.7.0.0', 'max' => _PS_VERSION_); $this->templateFile = 'module:cz_brandlogo/views/templates/hook/cz_brandlogo.tpl'; } public function install() { Configuration::updateValue('CZ_BRAND_SLIDER', 1); Configuration::updateValue('CZ_BRAND_NAME', 0); return parent::install() && $this->registerHook('displayHome'); } public function uninstall() { return parent::uninstall() && Configuration::deleteByName('CZ_BRAND_SLIDER') && Configuration::deleteByName('CZ_BRAND_NAME'); } public function getContent() { $output = ''; if (Tools::isSubmit('submitCzBlockBrandLogos')) { Configuration::updateValue('CZ_BRAND_SLIDER', (int)(Tools::getValue('CZ_BRAND_SLIDER'))); Configuration::updateValue('CZ_BRAND_NAME', (int)(Tools::getValue('CZ_BRAND_NAME'))); $this->_clearCache('*'); if (isset($errors) && count($errors)) { $output .= $this->displayError(implode('
', $errors)); } else { $output .= $this->displayConfirmation($this->trans( 'Settings updated.', array(), 'Admin.Global' )); } } return $output.$this->renderForm(); } public function hookActionObjectManufacturerUpdateAfter($params) { $this->_clearCache('*'); } public function hookActionObjectManufacturerAddAfter($params) { $this->_clearCache('*'); } public function hookActionObjectManufacturerDeleteAfter($params) { $this->_clearCache('*'); } public function _clearCache($template, $cache_id = null, $compile_id = null) { return parent::_clearCache($this->templateFile); } public function renderForm() { $fields_form = array( 'form' => array( 'legend' => array( 'title' => $this->trans( 'Settings', array(), 'Admin.Global' ), 'icon' => 'icon-cogs' ), 'input' => array( array( 'type' => 'switch', 'label' => $this->getTranslator()->trans('Display Manufacture Slider', array(), 'Modules.Brandlogo'), 'name' => 'CZ_BRAND_SLIDER', 'is_bool' => true, 'desc' => $this->getTranslator()->trans('Display Manufacturers Logo in Slider or Grid.', array(), 'Modules.Brandlogo'), 'values' => array( array( 'id' => 'active_on', 'value' => 1, 'label' => $this->getTranslator()->trans('Yes', array(), 'Admin.Global') ), array( 'id' => 'active_off', 'value' => 0, 'label' => $this->getTranslator()->trans('No', array(), 'Admin.Global') ) ), ), array( 'type' => 'switch', 'label' => $this->getTranslator()->trans('Display Manufacture Name', array(), 'Modules.Brandlogo'), 'name' => 'CZ_BRAND_NAME', 'is_bool' => true, 'values' => array( array( 'id' => 'active_on', 'value' => 1, 'label' => $this->getTranslator()->trans('Yes', array(), 'Admin.Global') ), array( 'id' => 'active_off', 'value' => 0, 'label' => $this->getTranslator()->trans('No', array(), 'Admin.Global') ) ), ), ), 'submit' => array( 'title' => $this->trans( 'Save', array(), 'Admin.Actions' ), ), ), ); $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 = 'submitCzBlockBrandLogos'; $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( 'CZ_BRAND_SLIDER' => (int)Tools::getValue('CZ_BRAND_SLIDER', Configuration::get('CZ_BRAND_SLIDER')), 'CZ_BRAND_NAME' => (int)Tools::getValue('CZ_BRAND_NAME', Configuration::get('CZ_BRAND_NAME')), ); } public function getWidgetVariables( $hookName = null, array $configuration = array() ) { $brands = Manufacturer::getManufacturers(false, (int)Context::getContext()->language->id); foreach ($brands as &$brand) { $brand['image'] = $this->context->language->iso_code.'-default'; $brand['link'] = $this->context->link->getManufacturerLink($brand); $fileExist = file_exists( _PS_MANU_IMG_DIR_ . $brand['id_manufacturer'] . '-' . ImageType::getFormattedName('medium').'.jpg' ); if ($fileExist) { $brand['image'] = $brand['id_manufacturer']; } } return array( 'brands' => $brands, 'page_link' => $this->context->link->getPageLink('manufacturer'), 'slider' => Configuration::get('CZ_BRAND_SLIDER'), 'brandname' => Configuration::get('CZ_BRAND_NAME'), 'display_link_brand' => Configuration::get('PS_DISPLAY_SUPPLIERS'), ); } public function renderWidget( $hookName = null, array $configuration = array() ) { $cacheId = $this->getCacheId('cz_brandlogo'); $isCached = $this->isCached($this->templateFile, $cacheId); if (!$isCached) { $this->smarty->assign($this->getWidgetVariables($hookName, $configuration)); } return $this->fetch($this->templateFile, $cacheId); } }