ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
web_access_checker.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
18 // Change to ILIAS main directory
19 chdir("../..");
20 
21 // Load the checker class, which also initializes ILIAS
22 require_once "./Services/WebAccessChecker/classes/class.ilWebAccessChecker.php";
23 
25 
26 if ($checker->checkAccess())
27 {
28  $checker->sendFile();
29 }
30 else
31 {
32  $checker->sendError();
33 }
34 ?>