<?php defined('SYSPATH') or die('No direct script access.');

class Controller_DeansOffice_Index extends Controller_UserEnvi {

    public function action_index()
    {
        $twig = Twig::factory('DeansOffice/index');
        $model = new Model_Teacher_Map;

        $twig->GradesList = DataArray::factory('Grades')->common()->asArray();

        $twig->User = $this->UserInfo;
        $this->response->body($twig);
    }
}