123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * @package chamilo.admin
- */
- // name of the language file that needs to be included
- $language_file = 'admin';
- $cidReset = true;
- require_once '../inc/global.inc.php';
- $this_section = SECTION_PLATFORM_ADMIN;
- api_protect_admin_script();
- require_once api_get_path(LIBRARY_PATH).'fileManage.lib.php';
- require_once api_get_path(LIBRARY_PATH).'export.lib.inc.php';
- $tool_name = get_lang('Export');
- $interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
- $interbreadcrumb[] = array ('url' => 'usergroups.php', 'name' => get_lang('Classes'));
- set_time_limit(0);
- $form = new FormValidator('export_users');
- $form->addElement('header', $tool_name);
- $form->addElement('style_submit_button', 'submit', get_lang('Export'), 'class="save"');
- if ($form->validate()) {
- $userGroup = new UserGroup();
- $header = array(array('id', 'name', 'description', 'users'));
- $data = $userGroup->getDataToExport();
- $data = array_merge($header, $data);
- $filename = 'export_classes_'.api_get_local_time();
- Export::export_table_csv($data, $filename);
- exit;
- }
- Display :: display_header($tool_name);
- $form->display();
- Display::display_footer();
|