ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
sessioncheck.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 if(!file_exists(getcwd() . '/ilias.ini.php'))
5 {
6  exit();
7 }
8 
9 include_once "Services/Context/classes/class.ilContext.php";
11 
12 require_once("Services/Init/classes/class.ilInitialisation.php");
14 
15 include_once 'Services/Authentication/classes/class.ilSessionReminderCheck.php';
17 echo $session_reminder_check->getJsonResponse(
18  ilUtil::stripSlashes($_POST['session_id'])
19 );
20 exit();
21 ?>