コード例 #1
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 http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <*****@*****.**>
*  @copyright  2007-2013 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registred Trademark & Property of PrestaShop SA
*/
/* Getting cookie or logout */
include dirname(__FILE__) . '/../../config/config.inc.php';
require_once dirname(__FILE__) . '/../../init.php';
if (substr(Tools::encrypt('blocklayered/index'), 0, 10) != Tools::getValue('layered_token') || !Module::isInstalled('blocklayered')) {
    die('Bad token');
}
include dirname(__FILE__) . '/blocklayered.php';
$category_box = Tools::getValue('categoryBox');
/* Clean categoryBox before use */
if (is_array($category_box)) {
    foreach ($category_box as &$value) {
        $value = (int) $value;
    }
}
$blockLayered = new BlockLayered();
echo $blockLayered->ajaxCallBackOffice($category_box, Tools::getValue('id_layered_filter'));
コード例 #2
0
/*
* 2007-2011 PrestaShop 
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 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/afl-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 <*****@*****.**>
*  @copyright  2007-2011 PrestaShop SA
*  @version  Release: $Revision: 1.4 $
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registred Trademark & Property of PrestaShop SA
*/
global $cookie;
include dirname(__FILE__) . '/../../config/config.inc.php';
include dirname(__FILE__) . '/../../init.php';
include dirname(__FILE__) . '/blocklayered.php';
$blockLayered = new BlockLayered();
echo $blockLayered->ajaxCall();
コード例 #3
0
<?php

include dirname(__FILE__) . '/../../config/config.inc.php';
include dirname(__FILE__) . '/blocklayered.php';
if (substr(Tools::encrypt('blocklayered/index'), 0, 10) != Tools::getValue('token') || !Module::isInstalled('blocklayered')) {
    die('Bad token');
}
$blockLayered = new BlockLayered();
$cursor = Tools::jsonDecode(Tools::getValue('cursor', '{}'), true);
echo $blockLayered->indexUrl($cursor, (int) Tools::getValue('truncate'));
コード例 #4
0
<?php

include dirname(__FILE__) . '/../../config/config.inc.php';
include dirname(__FILE__) . '/blocklayered.php';
if (substr(Tools::encrypt('blocklayered/index'), 0, 10) != Tools::getValue('token') || !Module::isInstalled('blocklayered')) {
    die('Bad token');
}
if (!Tools::getValue('ajax')) {
    // Case of nothing to do but showing a message (1)
    if (Tools::getValue('return_message') !== false) {
        echo '1';
        die;
    }
    if (Tools::usingSecureMode()) {
        $domain = Tools::getShopDomainSsl(true);
    } else {
        $domain = Tools::getShopDomain(true);
    }
    // Return a content without waiting the end of index execution
    header('Location: ' . $domain . __PS_BASE_URI__ . 'modules/blocklayered/blocklayered-price-indexer.php?token=' . Tools::getValue('token') . '&return_message=' . (int) Tools::getValue('cursor'));
    flush();
}
if (Tools::getValue('full')) {
    echo BlockLayered::fullPricesIndexProcess((int) Tools::getValue('cursor'), (int) Tools::getValue('ajax'), true);
} else {
    echo BlockLayered::pricesIndexProcess((int) Tools::getValue('cursor'), (int) Tools::getValue('ajax'));
}
コード例 #5
0
 /**
  * Get the recommendations from the blocklayered filters
  *
  * @param array $params list of specific data
  * @return array $aData containing the front office block
  */
 public function getBlockLayeredRecommendations($params)
 {
     require_once dirname(__FILE__) . '/../blocklayered/blocklayered.php';
     $oBlockLayered = new BlockLayered();
     // Check if the current version the stable one
     if ($oBlockLayered->version < 1.4) {
         return;
     }
     $aData = Tools::jsonDecode($oBlockLayered->ajaxCall());
     $sHookName = 'blocklayered';
     $this->oPrediggoCallController->_setPageName($sHookName);
     $params['filters'] = $this->getSelectedFilters();
     if (!($this->aRecommendations[$sHookName] = $this->oPrediggoCallController->getListOfRecommendations($sHookName, $params))) {
         return false;
     }
     global $smarty;
     // Display Main Configuration management
     $smarty->assign(array('hook_name' => $sHookName, 'page_name' => 'category', 'aRecommendations' => $this->aRecommendations, 'tax_enabled' => (int) Configuration::get('PS_TAX'), 'display_qties' => (int) Configuration::get('PS_DISPLAY_QTIES'), 'display_ht' => !Tax::excludeTaxeOption()));
     $aData->productList = $this->display(__FILE__, 'fo_list_reco.tpl') . $aData->productList;
     return $aData;
 }
コード例 #6
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 http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <*****@*****.**>
*  @copyright  2007-2011 PrestaShop SA
*  @version  Release: $Revision: 11084 $
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registred Trademark & Property of PrestaShop SA
*/
/* Getting cookie or logout */
include dirname(__FILE__) . '/../../config/config.inc.php';
require_once dirname(__FILE__) . '/../../init.php';
if (substr(Tools::encrypt('blocklayered/index'), 0, 10) != Tools::getValue('layered_token') || !Module::isInstalled('blocklayered')) {
    die('Bad token');
}
include dirname(__FILE__) . '/blocklayered.php';
/* Clean categoryBox before use */
if (isset($_GET['categoryBox']) and is_array($_GET['categoryBox'])) {
    foreach ($_GET['categoryBox'] as &$value) {
        $value = (int) $value;
    }
}
$blockLayered = new BlockLayered();
echo $blockLayered->ajaxCallBackOffice(Tools::getValue('categoryBox'), Tools::getValue('id_layered_filter'));
コード例 #7
0
<?php

include dirname(__FILE__) . '/../../config/config.inc.php';
include dirname(__FILE__) . '/blocklayered.php';
if (substr(Tools::encrypt('blocklayered/index'), 0, 10) != Tools::getValue('token') || !Module::isInstalled('blocklayered')) {
    die('Bad token');
}
$blockLayered = new BlockLayered();
echo $blockLayered->indexAttribute();
コード例 #8
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 http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <*****@*****.**>
*  @copyright  2007-2011 PrestaShop SA
*  @version  Release: $Revision: 8507 $
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registred Trademark & Property of PrestaShop SA
*/
/* Getting cookie or logout */
include dirname(__FILE__) . '/../../config/config.inc.php';
require_once dirname(__FILE__) . '/../../init.php';
if (substr(Tools::encrypt('blocklayered/index'), 0, 10) != Tools::getValue('layered_token') || !Module::isInstalled('blocklayered')) {
    die('Bad token');
}
include dirname(__FILE__) . '/blocklayered.php';
/* Clean categoryBox before use */
if (isset($_GET['categoryBox']) and is_array($_GET['categoryBox'])) {
    foreach ($_GET['categoryBox'] as &$value) {
        $value = (int) $value;
    }
}
$blockLayered = new BlockLayered();
echo $blockLayered->ajaxCallBackOffice((isset($_GET['categoryBox']) and is_array($_GET['categoryBox'])) ? $_GET['categoryBox'] : array(), (isset($_GET['id_layered_filter']) and !empty($_GET['id_layered_filter'])) ? (int) $_GET['id_layered_filter'] : array());
コード例 #9
0
<?php

require dirname(__FILE__) . '/../../config/config.inc.php';
include dirname(__FILE__) . '/../../init.php';
include dirname(__FILE__) . '/blocklayered.php';
Context::getContext()->controller->php_self = 'category';
$module = new BlockLayered();
echo $module->hookAjaxCall();