ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjExerciseVerificationListGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(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  {
44  $lng = $this->lng;
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...
Class ilObjExerciseVerificationListGUI.