1<?php
2/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4/**
5* Class ilObjTestVerificationListGUI
6*
7* @author Jörg Lützenkirchen <luetzenkirchen@leifos.com>
8* $Id$
9*
10* @extends ilObjectListGUI
11*/
12
13include_once "Services/Object/classes/class.ilObjectListGUI.php";
14
15class ilObjTestVerificationListGUI extends ilObjectListGUI
16{
17    /**
18    * initialisation
19    */
20    public function init()
21    {
22        $this->delete_enabled = true;
23        $this->cut_enabled = true;
24        $this->copy_enabled = true;
25        $this->subscribe_enabled = false;
26        $this->link_enabled = false;
27        $this->info_screen_enabled = false;
28        $this->type = "tstv";
29        $this->gui_class_name = "ilobjtestverificationgui";
30
31        // general commands array
32        include_once('./Modules/Test/classes/class.ilObjTestVerificationAccess.php');
33        $this->commands = ilObjTestVerificationAccess::_getCommands();
34    }
35
36    public function getProperties()
37    {
38        global $DIC;
39        $lng = $DIC['lng'];
40
41        return array(
42            array("alert" => false, "property" => $lng->txt("type"),
43                "value" => $lng->txt("wsp_list_tstv"))
44        );
45    }
46} // END class.ilObjTestVerificationListGUI
47