Skip to content
Snippets Groups Projects
Commit d7aef39c authored by User expired's avatar User expired
Browse files

openolat#225: do only hide the open calendar form link instead of removing it...

openolat#225: do only hide the open calendar form link instead of removing it (resulting in an error message)
parent 22dc641d
No related branches found
No related tags found
No related merge requests found
......@@ -243,9 +243,10 @@ public class EditBigBlueButtonMeetingController extends FormBasicController {
externalLinkEl.setExampleKey("noTransOnlyParam", new String[] {BigBlueButtonDispatcher.getMeetingUrl(externalLink)});
}
openCalLink = uifactory.addFormLink("calendar.open", formLayout);
openCalLink.setIconLeftCSS("o_icon o_icon-fw o_icon_calendar");
// UIBK: hide bbb-meeting calendar from end-users (https://git.uibk.ac.at/zid/dmlt/olat/openolat/issues/215)
//openCalLink = uifactory.addFormLink("calendar.open", formLayout);
//openCalLink.setIconLeftCSS("o_icon o_icon-fw o_icon_calendar");
openCalLink.setVisible(false);
updateTemplateInformations();
if(mode == Mode.dates) {
......
......@@ -91,9 +91,10 @@ public class BigBlueButtonDateListController extends StepFormBasicController imp
addButton = uifactory.addFormLink("add.meeting", formLayout, Link.BUTTON);
addButton.setIconLeftCSS("o_icon o_icon-fw o_icon_add");
openCalLink = uifactory.addFormLink("calendar.open", formLayout, Link.BUTTON);
openCalLink.setIconLeftCSS("o_icon o_icon-fw o_icon_calendar");
// UIBK: hide bbb-meeting calendar from end-users (https://git.uibk.ac.at/zid/dmlt/olat/openolat/issues/215)
//openCalLink = uifactory.addFormLink("calendar.open", formLayout, Link.BUTTON);
//openCalLink.setIconLeftCSS("o_icon o_icon-fw o_icon_calendar");
openCalLink.setVisible(false);
FlexiTableColumnModel columnsModel = FlexiTableDataModelFactory.createFlexiTableColumnModel();
columnsModel.addFlexiColumnModel(new DefaultFlexiColumnModel(RecurringCols.available,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment