12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * @package chamilo.admin
- */
- /**
- * Code
- */
- // 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();
- $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()) {
- $user_group = new UserGroup;
- $header = array(array('name', 'description'));
- $data = $user_group->get_all_for_export();
- $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();
|