• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • File List
  • Globals

dateplaner.php

Go to the documentation of this file.
00001 <?php
00002 /*
00003         +-----------------------------------------------------------------------------+
00004         | ILIAS open source                                                                                                                       |
00005         |       Dateplaner Modul                                                                                                                  |                                                                                                     
00006         +-----------------------------------------------------------------------------+
00007         | Copyright (c) 2004 ILIAS open source & University of Applied Sciences Bremen|
00008         |                                                                             |
00009         | This program is free software; you can redistribute it and/or               |
00010         | modify it under the terms of the GNU General Public License                 |
00011         | as published by the Free Software Foundation; either version 2              |
00012         | of the License, or (at your option) any later version.                      |
00013         |                                                                             |
00014         | This program is distributed in the hope that it will be useful,             |
00015         | but WITHOUT ANY WARRANTY; without even the implied warranty of              |
00016         | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               |
00017         | GNU General Public License for more details.                                |
00018         |                                                                             |
00019         | You should have received a copy of the GNU General Public License           |
00020         | along with this program; if not, write to the Free Software                 |
00021         | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. |
00022         +-----------------------------------------------------------------------------+
00023 */
00024 
00051         $modulDir = "/modules/dateplaner";
00052 
00059 // get ilias conectivity 
00060 require_once    ('./include/inc.header.php');
00061 
00062 // catch hack attempts
00063 if ($_SESSION["AccountId"] == ANONYMOUS_USER_ID)
00064 {
00065         $ilias->raiseError($lng->txt("msg_not_available_for_anon"),$ilias->error_obj->MESSAGE);
00066 }
00067 
00068 //
00069 // main
00070 //
00071 
00072 /*static variables */
00073 define("DATEPLANER_ROOT_DIR", $modulDir ); /* relative path to the dateplaner directory */
00074 
00075 
00076 /*dynamic variables and interface connection to ilias*/
00077 require_once    ('.'.DATEPLANER_ROOT_DIR.'/classes/class.ilCalInterface.php');
00078         $Interface              = new ilCalInterface($ilias);
00079 
00080         /* if the gui used without frames */
00081         if(!$uptext) {
00082                 $uptext                 = $Interface->getFrameDec();
00083         }
00084         
00085 
00086         /* load language strings into private array for the tateplaner*/
00087         $lng->loadLanguageModule("dateplaner"); 
00088         $DP_language    = $lng->text;
00089 
00090         /* other dynamic variables used in the dateplaner */
00091         $DP_UId                 = $Interface->getUId();                         // UserID
00092         $DP_Lang                = $Interface->getLang();                        // language, selected by the user
00093         $DP_Skin                = $Interface->getSkin();                        // style(-sheet)-name, selected by the user 
00094         $DP_Style               = $Interface->getStyle();                       // skin-name, selected by the user 
00095         $DP_StyleFname  = $Interface->getStyleFname();          // style(-sheet)-name including path, selected by the user 
00096         $DP_GroupIds    = $Interface->getGroupIds();            // GroupIDs of the current UserID (stub)
00097         $DP_dlI                 = $Interface->getDpDBHandler ();        // dateplaner database handler
00098         $locator                = $Interface->showLocator($tpl, $lng,$app); // Locate for ilias3
00099         $app                    = $_REQUEST["app"];                                     // dateplaner application
00100 
00101                 /*
00102 
00103                 $tpl->addBlockFile("LOCATOR","locator","tpl.locator.html");
00104                 $tpl->setCurrentBlock("locator_item");
00105                 $tpl->setVariable("LINK_ITEM","./search.php");
00106                 $tpl->setVariable("LINK_TARGET","bottom");
00107                 $tpl->setVariable("ITEM",$lng->txt("mail_search_word"));
00108                 $tpl->parseCurrentBlock();
00109 
00110                 $tpl->setCurrentBlock("locator");
00111                 $tpl->setVariable("TXT_LOCATOR",$lng->txt("locator"));
00112                 $tpl->parseCurrentBlock();*/
00113 
00114 
00115 // include DP Header 
00116 require ('.'.DATEPLANER_ROOT_DIR.'/includes/inc.dp.header.php');
00117 // include DP Output functions 
00118 require ('.'.DATEPLANER_ROOT_DIR.'/includes/inc.output.php');
00119 
00120 /* ----------------  session initialisation -----------------------*/
00121 include_once    ('.'.DATEPLANER_ROOT_DIR.'/includes/inc.session.php');
00122 // uncoment for ilias 2.3.8 Session Handler 
00123 //db_session_write(session_id(),session_encode());
00124 /* --------------  end session initialisation ---------------------*/
00125 
00126 
00127 
00128 /*dateplaner functions*/
00129 switch($_REQUEST["app"]) {
00130         case False :
00131         case 'inbox':
00132                 $PAGETITLE      = $DP_language[app_.$_REQUEST["app"]];                                                                                  // set page titel
00133                 include ('.'.DATEPLANER_ROOT_DIR.'/inbox.php');                                                                                         // include specific datplaner function
00134                 break;
00135         case 'date':
00136                 if ($_REQUEST["date_id"]){
00137                         $DateArray              = $DB->getDate ($_REQUEST["date_id"], $DP_UId);
00138                         $PAGETITLE              = $DP_language[app_.$_REQUEST["app"]]." : ".$DateArray[8];                              // set page titel
00139                 } else {
00140                         $PAGETITLE              = $DP_language[app_.$_REQUEST["app"]]." : ".@$DateValues[shorttext];    // set page titel
00141                 }
00142                 include ('.'.DATEPLANER_ROOT_DIR.'/date.php');                                                                                          // include specific datplaner function
00143                 
00144                 break;
00145         default :
00146                 $PAGETITLE      = $DP_language[app_.$_REQUEST["app"]];                                                                                  // set page titel
00147                 include ('.'.DATEPLANER_ROOT_DIR.'/'.$_REQUEST["app"].'.php');                                                          // include specific datplaner function
00148 }
00149 ?>

Generated on Fri Dec 13 2013 08:00:17 for ILIAS Release_3_3_x_branch .rev 46803 by  doxygen 1.7.1