Example #1
0
 *  @copyright  2007-2014 PrestaShop SA
 *  @version  Release: $Revision: 7515 $
 *  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 *  International Registered Trademark & Property of PrestaShop SA
 */
/*
 * This file can be called using a cron to generate Google Sitemap files automatically
 */
include dirname(__FILE__) . '/../../config/config.inc.php';
include dirname(__FILE__) . '/../../init.php';
/* Check to security tocken */
if (substr(Tools::encrypt('gsitemap/cron'), 0, 10) != Tools::getValue('token') || !Module::isInstalled('gsitemap')) {
    die('Bad token');
}
include dirname(__FILE__) . '/gsitemap.php';
$gsitemap = new Gsitemap();
/* Check if the module is enabled */
if ($gsitemap->active) {
    /* Check if the requested shop exists */
    $shops = Db::getInstance()->ExecuteS('SELECT id_shop FROM `' . _DB_PREFIX_ . 'shop`');
    $list_id_shop = array();
    foreach ($shops as $shop) {
        $list_id_shop[] = (int) $shop['id_shop'];
    }
    $id_shop = isset($_GET['id_shop']) && in_array($_GET['id_shop'], $list_id_shop) ? (int) $_GET['id_shop'] : (int) Configuration::get('PS_SHOP_DEFAULT');
    $gsitemap->cron = true;
    /* for the main run initiat the sitemap's files name stored in the database */
    if (!isset($_GET['continue'])) {
        $gsitemap->emptySitemap((int) $id_shop);
    }
    /* Create the Google Sitemap's files */
<?php

include dirname(__FILE__) . '/../../config/config.inc.php';
include dirname(__FILE__) . '/../../init.php';
if (substr(Tools::encrypt('gsitemap/cron'), 0, 10) != Tools::getValue('token') || !Module::isInstalled('gsitemap')) {
    die('Bad token');
}
include dirname(__FILE__) . '/gsitemap.php';
$gsitemap = new Gsitemap();
if ($gsitemap->active) {
    $gsitemap->cron = true;
    if (!isset($_GET['continue'])) {
        $gsitemap->removeSitemap();
    }
    $gsitemap->createSitemap();
}
Example #3
0
<?php

include dirname(__FILE__) . '/../../config/config.inc.php';
include dirname(__FILE__) . '/gsitemap.php';
if (substr(Tools::encrypt('gsitemap/cron'), 0, 10) != Tools::getValue('token') || !Module::isInstalled('gsitemap')) {
    die('Bad token');
}
$gsitemap = new Gsitemap();
if (!defined('_PS_BASE_URL_')) {
    define('_PS_BASE_URL_', Tools::getShopDomain(true));
}
if (!defined('_PS_BASE_URL_SSL_')) {
    define('_PS_BASE_URL_SSL_', Tools::getShopDomainSsl(true));
}
$context = Context::getContext();
$context->link = new Link();
echo $gsitemap->generateSitemapIndex();