ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
web_access_attach.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 $checker->setDisposition("attachment");
26 
27 if ($checker->checkAccess())
28 {
29  $checker->sendFile();
30 }
31 else
32 {
33  $checker->sendError();
34 }
35 ?>