<?php
/**
* Entier Studio
*
* LICENSE
*
* Copyright 2006 Entier Studio team.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @version $Id: session_office.php 93 2008-02-03 00:39:43Z yannromefort $
* @copyright Copyright (c) 2006 Entier Studio team. All rights reserved.
*/
//-------------------------------------------------------------------------
# Configuration file
@require_once ("./config/cfg.config.php");
#
//-------------------------------------------------------------------------
# User Request
//
@include_once (FRAMEWORK_DIR . "httprequest.php");
//
$userRequest = new HttpRequest(HTTP_VARS_REQUEST);
//
$pkid = $userRequest->Parameter("pkid");
$mode = $userRequest->Parameter("mode");
#
//-----------------------------------------------------------------------------
switch ($mode) {
case 1:
//---------------------------------------------------------------------
# Http Session
//
@include_once (FRAMEWORK_DIR . "httpsession.php");
//
$HTTPSession = new HttpSession;
if ($HTTPSession->get_privacy_id("E_Office_UID") != false) {
$HTTPSession->set_session_id("E_Office_SID");
$HTTPSession->HttpRedirection("session_office.php?mode=2&pkid=$pkid");
} else $HTTPSession->HttpRedirection("index.php");
//
break;
case 2:
//---------------------------------------------------------------------
# User Session
//
@include_once (FRAMEWORK_DIR . "usersession.php");
//
$userSession = new UserSession("E_Office_UID", "E_Office_SID");
if ($userSession->checkUserSerialization($pkid) != PROXY_USER_SERIALIZATION_PRIVACY) $userSession->UserRedirection("index.php");
else $userSession->UserRedirection("./office/?pkid=$pkid");
//
break;
default:
//---------------------------------------------------------------------
Header("Location: index.php");
//
break;
}
#
//-------------------------------------------------------------------------
?>