57 lines
2.2 KiB
PHP
57 lines
2.2 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
* 2007-2015 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:
|
||
|
* http://opensource.org/licenses/osl-3.0.php
|
||
|
* 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 http://www.prestashop.com for more information.
|
||
|
*
|
||
|
* @author PrestaShop SA <contact@prestashop.com>
|
||
|
* @copyright 2007-2015 PrestaShop SA
|
||
|
* @license http://opensource.org/licenses/osl-3.0.php 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();
|
||
|
}
|
||
|
|
||
|
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.6.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();
|
||
|
}
|
||
|
}
|