ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjRemoteCourseGUI.php
Go to the documentation of this file.
1 <?php
2 
18 declare(strict_types=1);
19 
32 {
33  public function __construct($a_id = 0, $a_id_type = self::REPOSITORY_NODE_ID, $a_parent_node_id = 0)
34  {
35  parent::__construct($a_id, $a_id_type, $a_parent_node_id);
36 
37  $this->lng->loadLanguageModule('rcrs');
38  $this->lng->loadLanguageModule('crs');
39  }
40 
41  public function getType(): string
42  {
43  return 'rcrs';
44  }
45 
46  protected function addCustomInfoFields(ilInfoScreenGUI $a_info): void
47  {
48  $a_info->addProperty($this->lng->txt('crs_visibility'), $this->availabilityToString());
49  }
50 
51  protected function availabilityToString(): string
52  {
53  switch ($this->object->getAvailabilityType()) {
55  return $this->lng->txt('offline');
56 
58  return $this->lng->txt('crs_unlimited');
59 
62  new ilDateTime($this->object->getStartingTime(), IL_CAL_UNIX),
63  new ilDateTime($this->object->getEndingTime(), IL_CAL_UNIX)
64  );
65  }
66  return '';
67  }
68 
69  protected function addCustomEditForm(ilPropertyFormGUI $a_form): void
70  {
71  $radio_grp = new ilRadioGroupInputGUI($this->lng->txt('crs_visibility'), 'activation_type');
72  $radio_grp->setValue($this->object->getAvailabilityType());
73  $radio_grp->setDisabled(true);
74 
75  $radio_opt = new ilRadioOption(
76  $this->lng->txt('crs_visibility_unvisible'),
78  );
79  $radio_grp->addOption($radio_opt);
80 
81  $radio_opt = new ilRadioOption(
82  $this->lng->txt('crs_visibility_limitless'),
84  );
85  $radio_grp->addOption($radio_opt);
86 
87  // :TODO: not supported in ECS yet
88  $radio_opt = new ilRadioOption(
89  $this->lng->txt('crs_visibility_until'),
91  );
92 
93  $start = new ilDateTimeInputGUI($this->lng->txt('crs_start'), 'start');
94  $start->setDate(new ilDateTime(time(), IL_CAL_UNIX));
95  $start->setDisabled(true);
96  $start->setShowTime(true);
97  $radio_opt->addSubItem($start);
98  $end = new ilDateTimeInputGUI($this->lng->txt('crs_end'), 'end');
99  $end->setDate(new ilDateTime(time(), IL_CAL_UNIX));
100  $end->setDisabled(true);
101  $end->setShowTime(true);
102  $radio_opt->addSubItem($end);
103 
104  $radio_grp->addOption($radio_opt);
105  $a_form->addItem($radio_grp);
106  }
107 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilInfoScreenGUI.
addProperty(string $a_name, string $a_value, string $a_link="")
add a property to current section
addCustomEditForm(ilPropertyFormGUI $a_form)
const IL_CAL_UNIX
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addCustomInfoFields(ilInfoScreenGUI $a_info)
Interface ilCtrlBaseClassInterface describes ilCtrl base classes.
This class represents a property in a property form.
setDate(ilDateTime $a_date=null)
set date E.g $dt_form->setDate(new ilDateTime(time(),IL_CAL_UTC)); or $dt_form->setDate(new ilDateTim...
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false)
Format a period of two dates Shows: 14.
__construct(Container $dic, ilPlugin $plugin)
__construct($a_id=0, $a_id_type=self::REPOSITORY_NODE_ID, $a_parent_node_id=0)