ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilObjExerciseVerificationListGUI.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
27{
28 public function init(): void
29 {
30 $this->delete_enabled = true;
31 $this->cut_enabled = true;
32 $this->copy_enabled = true;
33 $this->subscribe_enabled = false;
34 $this->link_enabled = false;
35 $this->info_screen_enabled = false;
36 $this->type = 'excv';
37 $this->gui_class_name = ilObjExerciseVerificationGUI::class;
38
40 }
41
42 public function getProperties(): array
43 {
45
46 return [
47 [
48 'alert' => false,
49 'property' => $lng->txt('type'),
50 'value' => $lng->txt('wsp_list_excv')
51 ]
52 ];
53 }
54}
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...