Newer
Older
<?php defined('SYSPATH') or die('No direct script access.');
class Controller_Student_Profile extends Controller_UserEnvi {
public function action_show()
{
$twig = Twig::factory('base');
$twig->User = $this->UserInfo;
$db = new Model_Student;
//$profile = $db->getStudentProfile($this->UserInfo['StudentID']);
$this->response->body($twig);
}
}