Skip to content
Snippets Groups Projects
Index.php 426 B
Newer Older
<?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();

Антон Шалимов's avatar
Антон Шалимов committed
        $twig->User = $this->UserInfo;