forked from tsugiproject/tsugi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.php
35 lines (22 loc) · 846 Bytes
/
test.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
use \Tsugi\Core\LTIX;
require_once "config.php";
if ( ! \Tsugi\Util\U::isCLI() ) die('Can only be run from the command line');
$CFG = new \Tsugi\Config\ConfigInfo(basename(__FILE__),'http://localhost');
$LAUNCH = new \Tsugi\Core\LTIX();
$key = new \Tsugi\Core\Key();
$context = new \Tsugi\Core\Context();
$link = new \Tsugi\Core\Link();
$user = new \Tsugi\Core\User();
$OUTPUT = new \Tsugi\UI\Output();
$router = new Tsugi\Util\FileRouter();
$set = new \Tsugi\UI\MenuSet();
$submenu = new \Tsugi\UI\Menu();
$settingsDialog = new \Tsugi\UI\SettingsDialog();
$cc_dom = new \Tsugi\Util\CC();
// No more Google
// $client = new \Google_Client();
// $link = new \Google_Service_Classroom_Link();
// $materials = new \Google_Service_Classroom_Material();
// $cw = new \Google_Service_Classroom_CourseWork();
echo("Test complete\n");