getAdminSearchForm(); $startDate = new DateTime($form->getElement('start')->getValue()); $endDate = new DateTime($form->getElement('end')->getValue()); $type = $form->getElement('type')->getValue(); $tpl = new Template($tool_name); $tpl->assign('meetings', $plugin->getPeriodMeetings($type, $startDate, $endDate)); if ($plugin->get('enableCloudRecording')) { $tpl->assign('recordings', $plugin->getRecordings($startDate, $endDate)); } $tpl->assign('search_form', $form->returnForm()); $tpl->assign('content', $tpl->fetch('zoom/view/admin.tpl')); $tpl->display_one_col_template();