38 bool $a_call_by_reference =
true,
39 bool $a_prepare_output =
true 42 $this->
access = $DIC->access();
43 $this->
ctrl = $DIC->ctrl();
44 $this->
lng = $DIC->language();
48 $this->
lng->loadLanguageModule(
'mcst');
50 $this->mc_request = $DIC->mediaCast()
58 $next_class = $this->
ctrl->getNextClass($this);
59 $cmd = $this->
ctrl->getCmd();
63 if (!$this->rbac_system->checkAccess(
"visible,read", $this->object->getRefId())) {
67 switch ($next_class) {
68 case 'ilpermissiongui':
69 $this->tabs_gui->setTabActive(
'perm_settings');
71 $this->
ctrl->forwardCommand($perm_gui);
75 if (!$cmd || $cmd ==
'view') {
76 $cmd =
"editSettings";
89 $this->tabs_gui->addTarget(
91 $this->
ctrl->getLinkTarget($this,
"editSettings"),
92 array(
"editSettings",
"view")
97 $this->tabs_gui->addTarget(
99 $this->
ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm"),
108 $this->tabs_gui->setTabActive(
'mcst_edit_settings');
116 $purposeSuffixes = [];
119 if ($ilAccess->checkAccess(
"write",
"", $this->object->getRefId())) {
125 if ($form->checkInput()) {
127 $this->mc_settings->setDefaultAccess($form->getInput(
"defaultaccess"));
129 $this->mc_settings->setVideoCompletionThreshold((
int) $form->getInput(
"video_completion_threshold"));
131 $this->mc_settings->save();
133 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
135 $form->setValuesByPost();
141 $ilCtrl->redirect($this,
"view");
161 $form->setFormAction($this->
ctrl->getFormAction($this));
162 $form->setTitle($this->
lng->txt(
'settings'));
164 if ($ilAccess->checkAccess(
"write",
"", $this->object->getRefId())) {
165 $form->addCommandButton(
'saveSettings', $this->
lng->txt(
'save'));
166 $form->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
172 $radio_group->addOption($radio_option);
174 $radio_group->addOption($radio_option);
175 $radio_group->
setInfo(
$lng->
txt(
"mcst_news_item_visibility_info"));
176 $radio_group->setRequired(
false);
177 $radio_group->setValue($this->mc_settings->getDefaultAccess());
178 #$ch->addSubItem($radio_group); 179 $form->addItem($radio_group);
186 $ti->setMaxValue(100);
188 $ti->setInfo(
$lng->
txt(
"mcst_video_completion_threshold_info"));
189 $ti->setValue($this->mc_settings->getVideoCompletionThreshold());
219 $this->tpl->setContent($form->getHTML());
This class represents an option in a radio group.
ilRbacSystem $rbac_system
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...
prepareOutput(bool $show_sub_objects=true)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
Class ilObjectGUI Basic methods of all Output classes.
__construct(Container $dic, ilPlugin $plugin)