Skip to content
Snippets Groups Projects
Commit 9848313d authored by Andrew Rudenets's avatar Andrew Rudenets
Browse files

Исправление багов, vol. 1

parent 0c11f787
Branches
Tags
No related merge requests found
<?php defined('SYSPATH') or die('No direct script access.');
class Controller_Teacher_Index extends Controller_UserEnvi {
public function action_index()
{
$twig = Twig::factory('teacher/index');
// ???
$twig->User = $this->UserInfo;
$this->response->body($twig);
}
public function action_settings() {
$twig = Twig::factory('settings');
$twig->User = $this->UserInfo;
$this->response->body($twig);
}
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment