15 lines
257 B
PHP
15 lines
257 B
PHP
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
// protect a course script
|
|
api_protect_course_script(true);
|
|
|
|
Display::display_reduced_header();
|
|
|
|
$tool = isset($tool) ? $tool : null;
|
|
// Tracking
|
|
Event::event_access_tool($tool);
|
|
|
|
// Display
|
|
echo $content;
|