You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
518 B
20 lines
518 B
|
9 years ago
|
<?php
|
||
|
|
/* For license terms, see /license.txt */
|
||
|
|
$cidReset = true;
|
||
|
|
|
||
|
9 years ago
|
require_once __DIR__.'/../../main/inc/global.inc.php';
|
||
|
9 years ago
|
|
||
|
|
$plugin = ImsLtiPlugin::create();
|
||
|
|
$em = Database::getManager();
|
||
|
|
|
||
|
|
$tools = Database::select('*', ImsLtiPlugin::TABLE_TOOL);
|
||
|
|
|
||
|
|
$template = new Template($plugin->get_title());
|
||
|
|
$template->assign('tools', $tools);
|
||
|
|
|
||
|
8 years ago
|
$content = $template->fetch('ims_lti/view/admin.tpl');
|
||
|
9 years ago
|
|
||
|
|
$template->assign('header', $plugin->get_title());
|
||
|
|
$template->assign('content', $content);
|
||
|
|
$template->display_one_col_template();
|