Minor - fixed section tab activation - refs BT#17288

pull/3274/head
Sébastien Ducoulombier 6 years ago
parent c184212739
commit 781159227e
  1. 3
      plugin/zoom/admin.php
  2. 3
      plugin/zoom/config.php
  3. 4
      plugin/zoom/meeting_from_admin.php
  4. 4
      plugin/zoom/meeting_from_start.php
  5. 3
      plugin/zoom/start.php

@ -15,6 +15,9 @@ $tool_name = get_lang('ZoomVideoconference');
$plugin = ZoomPlugin::create();
// the section (for the tabs)
$this_section = SECTION_PLATFORM_ADMIN;
$form = new FormValidator(get_lang('Search'));
$startDatePicker = $form->addDatePicker('search_meeting_start', get_lang('StartDate'));
$endDatePicker = $form->addDatePicker('search_meeting_end', get_lang('EndDate'));

@ -2,6 +2,3 @@
/* For licensing terms, see /license.txt */
require_once __DIR__.'/../../main/inc/global.inc.php';
// the section (for the tabs)
$this_section = SECTION_COURSES;

@ -3,4 +3,8 @@
require_once __DIR__.'/config.php';
$returnURL = 'admin.php';
// the section (for the tabs)
$this_section = SECTION_PLATFORM_ADMIN;
include "meeting.php";

@ -3,4 +3,8 @@
require_once __DIR__.'/config.php';
$returnURL = 'start.php?cId='.api_get_course_id().'&sessionId='.api_get_session_id();
// the section (for the tabs)
$this_section = SECTION_COURSES;
include "meeting.php";

@ -5,6 +5,9 @@ $course_plugin = 'zoom'; // needed in order to load the plugin lang variables
require_once __DIR__.'/config.php';
// the section (for the tabs)
$this_section = SECTION_COURSES;
$logInfo = [
'tool' => 'Videoconference Zoom',
];

Loading…
Cancel
Save