-
Andrew Rudenets authoredb44364f7
Forked from
it-lab / grade
Source project has a limited visibility.
Disciplines.php 323 B
<?php defined('SYSPATH') or die('No direct script access.');
class Controller_Teacher_Admin_Index extends Controller_UserEnvi {
public function action_index()
{
$twig = Twig::factory('admin/index');
$twig->User = $this->UserInfo;
$this->response->body($twig);
}
}