Files
bio-concept-labo/web/controllers/admin/AdminAddonsCatalogController.php
2019-11-20 07:44:43 +01:00

73 lines
2.6 KiB
PHP

<?php
/**
* 2007-2017 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2017 PrestaShop SA
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
class AdminAddonsCatalogControllerCore extends AdminController
{
public function __construct()
{
$this->bootstrap = true;
parent::__construct('', 'new-theme');
}
public function initContent()
{
$parent_domain = Tools::getHttpHost(true).substr($_SERVER['REQUEST_URI'], 0, -1 * strlen(basename($_SERVER['REQUEST_URI'])));
$iso_lang = $this->context->language->iso_code;
$iso_currency = $this->context->currency->iso_code;
$iso_country = $this->context->country->iso_code;
$activity = Configuration::get('PS_SHOP_ACTIVITY');
$addons_url = 'http://addons.prestashop.com/iframe/search-1.7.php?psVersion='._PS_VERSION_.'&isoLang='.$iso_lang.'&isoCurrency='.$iso_currency.'&isoCountry='.$iso_country.'&activity='.(int)$activity.'&parentUrl='.$parent_domain;
$addons_content = Tools::file_get_contents($addons_url);
$this->context->smarty->assign(array(
'iso_lang' => $iso_lang,
'iso_currency' => $iso_currency,
'iso_country' => $iso_country,
'display_addons_content' => $addons_content !== false,
'addons_content' => $addons_content,
'parent_domain' => $parent_domain,
));
parent::initContent();
}
/**
* Prevent the requirement of a not displayed template helper
*/
protected function initTabModuleList()
{
return true;
}
/**
* Prevent the requirement of a not displayed template helper
*/
public function renderModulesList($tracking_source = false)
{
return true;
}
}