Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/public/plugin/surveyexporttxt/start.php

50 lines
2.1 KiB

<?php
/* For licensing terms, see /license.txt */
require_once __DIR__.'/../../main/inc/global.inc.php';
api_protect_course_script(true);
api_protect_teacher_script();
$plugin = SurveyExportTxtPlugin::create();
$courseCode = api_get_course_id();
// Create a sortable table with survey-data
$table = new SortableTable(
'surveys',
['SurveyUtil', 'get_number_of_surveys'],
['SurveyUtil', 'get_survey_data'],
2
);
$table->set_additional_parameters(['cidReq' => $courseCode]);
$table->set_header(0, '', false);
$table->setHideColumn(0);
$table->set_header(1, get_lang('Survey name'));
$table->set_header(2, get_lang('Code'), true, ['class' => 'text-center'], ['class' => 'text-center']);
$table->set_header(3, get_lang('Questions'), true, ['class' => 'text-right'], ['class' => 'text-right']);
$table->set_header(4, get_lang('Author'));
$table->set_header(5, get_lang('Available from'), true, ['class' => 'text-center'], ['class' => 'text-center']);
$table->set_header(6, get_lang('Until'), true, ['class' => 'text-center'], ['class' => 'text-center']);
$table->set_header(7, get_lang('Invite'), true, ['class' => 'text-right'], ['class' => 'text-right']);
$table->set_header(8, get_lang('Anonymous'), true, ['class' => 'text-center'], ['class' => 'text-center']);
$table->set_column_filter(8, ['SurveyUtil', 'anonymous_filter']);
if (api_get_configuration_value('allow_mandatory_survey')) {
$table->set_header(9, get_lang('Mandatory?'), true, ['class' => 'text-center'], ['class' => 'text-center']);
$table->set_header(10, get_lang('Export'), false, ['class' => 'text-center'], ['class' => 'text-center']);
$table->set_column_filter(10, ['SurveyExportTxtPlugin', 'filterModify']);
} else {
$table->set_header(9, get_lang('Export'), false, ['class' => 'text-center'], ['class' => 'text-center']);
$table->set_column_filter(9, ['SurveyExportTxtPlugin', 'filterModify']);
}
$pageTitle = $plugin->get_title();
$template = new Template($pageTitle);
$content = $table->return_table();
$template->assign('header', $pageTitle);
$template->assign('content', $content);
$template->display_one_col_template();