ILIAS
eassessment Revision 61809
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
web_access_virtual.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3
23
// Change to ILIAS main directory
24
chdir(
"../.."
);
25
26
// Load the checker class, which also initializes ILIAS
27
require_once
"./Services/WebAccessChecker/classes/class.ilWebAccessChecker.php"
;
28
29
$checker
=
new
ilWebAccessChecker
();
30
$checker
->setDisposition(
"virtual"
);
31
32
if
(
$checker
->checkAccess())
33
{
34
$checker
->sendFile();
35
}
36
else
37
{
38
$checker
->sendError();
39
}
40
?>
Services
WebAccessChecker
web_access_virtual.php
Generated on Mon Apr 25 2016 19:01:46 for ILIAS by
1.8.1.2 (using
Doxyfile
)