dolibarr/htdocs/core/website.inc.php

94 lines
3.3 KiB
PHP
Raw Normal View History

<?php
2018-09-25 16:35:59 +02:00
/* Copyright (C) 2017-2018 Laurent Destailleur <eldy@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* or see http://www.gnu.org/
*/
/**
* \file htdocs/core/website.inc.php
2018-10-03 19:53:33 +02:00
* \brief Common file loaded by all website pages (after master.inc.php). It set the new object $weblangs, using parameter 'l'.
2018-10-14 18:44:29 +02:00
* This file is included in top of all container pages.
2018-09-25 16:35:59 +02:00
* The global variable $websitekey must be defined.
*/
2018-10-03 20:58:45 +02:00
// Load website class
2017-10-20 23:48:42 +02:00
include_once DOL_DOCUMENT_ROOT.'/website/class/website.class.php';
2018-10-16 01:39:04 +02:00
// Define $website
2018-10-03 20:58:45 +02:00
if (! is_object($website))
{
$website=new Website($db);
$website->fetch(0,$websitekey);
}
2018-10-16 01:39:04 +02:00
// Define $weblangs
2018-10-03 20:58:45 +02:00
if (! is_object($weblangs))
{
2018-10-14 20:04:25 +02:00
$weblangs = dol_clone($langs); // TODO Use an object lang from a language set into $website object instead of backoffice
2018-10-03 20:58:45 +02:00
}
2018-10-16 01:39:04 +02:00
// Define $websitepage if we have $websitepagefile defined
if (! $pageid && ! empty($websitepagefile))
{
$pageid = str_replace(array('.tpl.php', 'page'), array('', ''), basename($websitepagefile));
}
if ($pageid > 0)
{
include_once DOL_DOCUMENT_ROOT.'/website/class/websitepage.class.php';
$websitepage=new WebsitePage($db);
$websitepage->fetch($pageid);
}
2018-10-14 18:44:29 +02:00
// A lang was forced, so we change weblangs init
2018-10-03 19:53:33 +02:00
if (GETPOST('l','aZ09')) $weblangs->setDefaultLang(GETPOST('l','aZ09'));
2018-10-14 18:44:29 +02:00
// A lang was forced, so we check to find if we must make a redirect on translation page
2018-10-14 20:04:25 +02:00
if ($_SERVER['PHP_SELF'] != DOL_URL_ROOT.'/website/index.php') // If we browsing page using Dolibarr server or a Native web server
2018-10-14 18:44:29 +02:00
{
2018-10-14 20:04:25 +02:00
//print_r(get_defined_constants(true));exit;
2018-10-14 18:44:29 +02:00
if (GETPOST('l','aZ09'))
{
2018-10-16 01:39:04 +02:00
$sql ="SELECT wp.rowid, wp.lang, wp.pageurl, wp.fk_page";
$sql.=" FROM ".MAIN_DB_PREFIX."website_page as wp";
$sql.=" WHERE wp.fk_website = ".$website->id;
$sql.=" AND (wp.fk_page = ".$pageid." OR wp.rowid = ".$pageid;
if (is_object($websitepage) && $websitepage->fk_page > 0) $sql.=" OR wp.fk_page = ".$websitepage->fk_page." OR wp.rowid = ".$websitepage->fk_page;
$sql.=")";
$sql.= " AND wp.lang = '".$db->escape(GETPOST('l','aZ09'))."'";
2018-10-14 23:26:57 +02:00
2018-10-16 01:39:04 +02:00
$resql = $db->query($sql);
if ($resql)
{
$obj = $db->fetch_object($resql);
if ($obj)
2018-10-14 18:44:29 +02:00
{
2018-10-16 01:39:04 +02:00
$newpageid = $obj->rowid;
if ($newpageid != $pageid) // To avoid to make a redirect on same page (infinite loop)
2018-10-14 18:44:29 +02:00
{
2018-10-16 01:39:04 +02:00
if (defined('USEDOLIBARRSERVER')) {
2018-10-16 01:52:22 +02:00
header("Location: ".DOL_URL_ROOT.'/public/website/index.php?website='.$websitekey.'&pageid='.$newpageid.'&l='.GETPOST('l','aZ09'));
2018-10-16 01:39:04 +02:00
exit;
}
else
2018-10-14 20:04:25 +02:00
{
2018-10-16 01:39:04 +02:00
$newpageref = $obj->pageurl;
header("Location: ".$newpageref.'.php?l='.GETPOST('l','aZ09'));
exit;
2018-10-14 20:04:25 +02:00
}
2018-10-14 18:44:29 +02:00
}
}
}
}
}
2018-10-03 20:58:45 +02:00
// Load websitepage class
2018-09-25 16:35:59 +02:00
include_once DOL_DOCUMENT_ROOT.'/website/class/websitepage.class.php';