ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
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
19chdir("../..");
20
21// Load the checker class, which also initializes ILIAS
22require_once "./Services/WebAccessChecker/classes/class.ilWebAccessChecker.php";
23
25$checker->setDisposition("attachment");
26
27if ($checker->checkAccess())
28{
29 $checker->sendFile();
30}
31else
32{
33 $checker->sendError();
34}
35?>
Class ilWebAccessChecker.