$group) { if (!empty($_POST['same_tutor'])) { $group['tutor'] = $_POST['group_0_tutor']; } if (!empty($_POST['same_places'])) { $group['places'] = $_POST['group_0_places']; } GroupManager::create_group( $group['name'], $group['category'], $group['tutor'], $group['places'] ); } Display::addFlash(Display::return_message(get_lang('GroupsAdded'))); header("Location: ".$currentUrl); exit; break; case 'create_subgroups': GroupManager::create_subgroups( $_POST['base_group'], $_POST['number_of_groups'] ); Display::addFlash(Display::return_message(get_lang('GroupsAdded'))); header("Location: ".$currentUrl); exit; break; case 'create_class_groups': $ids = GroupManager::create_class_groups($_POST['group_category']); Display::addFlash(Display::return_message(get_lang('GroupsAdded'))); header("Location: ".$currentUrl); exit; break; } } $nameTools = get_lang('GroupCreation'); $interbreadcrumb[] = array( 'url' => api_get_path(WEB_CODE_PATH).'group/group.php?'.api_get_cidreq(), 'name' => get_lang('Groups'), ); Display :: display_header($nameTools, 'Group'); if (isset($_POST['number_of_groups'])) { if (!is_numeric($_POST['number_of_groups']) || intval($_POST['number_of_groups']) < 1) { Display :: display_error_message( get_lang('PleaseEnterValidNumber').'

« '.get_lang('Back').'', false ); } else { $number_of_groups = intval($_POST['number_of_groups']); if ($number_of_groups > 1) { ?> $category) { $cat_options[$category['id']] = $category['title']; } $form = new FormValidator('create_groups_step2', 'POST', api_get_self().'?'.api_get_cidreq()); // Modify the default templates $renderer = $form->defaultRenderer(); $form_template = "
\n
\n\n{content}\n
\n
\n
"; $renderer->setFormTemplate($form_template); $element_template = << * {label} {error}
{element} EOT; $renderer->setCustomElementTemplate($element_template); $form->addElement('header', $nameTools); $form->addElement('hidden', 'action'); $form->addElement('hidden', 'number_of_groups'); $defaults = array(); // Table heading $group_el = array(); $group_el[] = $form->createElement('static', null, null, ''.get_lang('GroupName').''); if (api_get_setting('allow_group_categories') === 'true') { $group_el[] = $form->createElement('static', null, null, ''.get_lang('GroupCategory').''); } $group_el[] = $form->createElement('static', null, null, ''.get_lang('GroupPlacesThis').''); $form->addGroup($group_el, 'groups', null, "", false); // Checkboxes if ($_POST['number_of_groups'] > 1) { $group_el = array(); $group_el[] = $form->createElement('static', null, null, ' '); if (api_get_setting('allow_group_categories') === 'true') { $group_el[] = $form->createElement( 'checkbox', 'same_category', null, get_lang('SameForAll'), array('onclick' => "javascript: switch_state('category');") ); } $group_el[] = $form->createElement( 'checkbox', 'same_places', null, get_lang('SameForAll'), array('onclick' => "javascript: switch_state('places');") ); $form->addGroup($group_el, 'groups', null, '', false); } // Properties for all groups for ($group_number = 0; $group_number < $_POST['number_of_groups']; $group_number++) { $group_el = array(); $group_el[] = $form->createElement('text', 'group_'.$group_number.'_name'); if (api_get_setting('allow_group_categories') === 'true') { $group_el[] = $form->createElement( 'select', 'group_'.$group_number.'_category', null, $cat_options, array('id' => 'category_'.$group_number) ); } else { $group_el[] = $form->createElement('hidden', 'group_'.$group_number.'_category', 0); $defaults['group_'.$group_number.'_category'] = array_keys($cat_options)[0]; } $group_el[] = $form->createElement( 'text', 'group_'.$group_number.'_places', null, array('class' => 'span1', 'id' => 'places_'.$group_number) ); if ($_POST['number_of_groups'] < 10000) { if ($group_id < 10) { $prev = '000'; } elseif ($group_id < 100) { $prev = '00'; } elseif ($group_id < 1000) { $prev = '0'; } else { $prev = ''; } } $defaults['group_'.$group_number.'_name'] = get_lang('GroupSingle').' '.$prev.$group_id++; $form->addGroup($group_el, 'group_'.$group_number, null, '', false); } $defaults['action'] = 'create_groups'; $defaults['number_of_groups'] = intval($_POST['number_of_groups']); $form->setDefaults($defaults); $form->addButtonCreate(get_lang('CreateGroup'), 'submit'); $form->display(); } } else { /* * Show form to generate new groups */ $create_groups_form = new FormValidator('create_groups', 'post', api_get_self().'?'.api_get_cidreq()); $create_groups_form->addElement('header', $nameTools); $create_groups_form->addText('number_of_groups', get_lang('NumberOfGroupsToCreate'), null, array('value'=>'1')); $create_groups_form->addButton('submit', get_lang('ProceedToCreateGroup'), 'plus', 'primary'); $defaults = array(); $defaults['number_of_groups'] = 1; $create_groups_form->setDefaults($defaults); $create_groups_form->display(); /* * Show form to generate subgroups */ if (api_get_setting('allow_group_categories') === 'true' && count(GroupManager :: get_group_list()) > 0) { $base_group_options = array(); $groups = GroupManager :: get_group_list(); foreach ($groups as $index => $group) { $number_of_students = GroupManager :: number_of_students($group['id']); if ($number_of_students > 0) { $base_group_options[$group['id']] = $group['name'].' ('.$number_of_students.' '.get_lang('Users').')'; } } if (count($base_group_options) > 0) { $create_subgroups_form = new FormValidator('create_subgroups', 'post', api_get_self().'?'.api_get_cidreq()); $create_subgroups_form->addElement('header', get_lang('CreateSubgroups')); $create_subgroups_form->addElement('html', get_lang('CreateSubgroupsInfo')); $create_subgroups_form->addElement('hidden', 'action'); $group_el = array(); $group_el[] = $create_subgroups_form->createElement('static', null, null, get_lang('CreateNumberOfGroups')); $group_el[] = $create_subgroups_form->createElement('text', 'number_of_groups', null, array('size' => 3)); $group_el[] = $create_subgroups_form->createElement('static', null, null, get_lang('WithUsersFrom')); $group_el[] = $create_subgroups_form->createElement('select', 'base_group', null, $base_group_options); $group_el[] = $create_subgroups_form->createElement('button', 'submit', get_lang('Ok')); $create_subgroups_form->addGroup($group_el, 'create_groups', null, null, false); $defaults = array(); $defaults['action'] = 'create_subgroups'; $create_subgroups_form->setDefaults($defaults); $create_subgroups_form->display(); } } /* * Show form to generate groups from classes subscribed to the course */ $options['where'] = array(" usergroup.course_id = ? " => api_get_course_int_id()); $obj = new UserGroup(); $classes = $obj->getUserGroupInCourse($options); if (count($classes) > 0) { echo ''.get_lang('GroupsFromClasses').''; echo '
'; echo '

'.get_lang('GroupsFromClassesInfo').'

'; echo ''; $create_class_groups_form = new FormValidator('create_class_groups_form', 'post', api_get_self().'?'.api_get_cidreq()); $create_class_groups_form->addElement('hidden', 'action'); if (api_get_setting('allow_group_categories') === 'true') { $group_categories = GroupManager :: get_categories(); $cat_options = array(); foreach ($group_categories as $index => $category) { $cat_options[$category['id']] = $category['title']; } $create_class_groups_form->addElement('select', 'group_category', null, $cat_options); } else { $create_class_groups_form->addElement('hidden', 'group_category'); } $create_class_groups_form->addElement('submit', 'submit', get_lang('Ok')); $defaults['group_category'] = GroupManager::DEFAULT_GROUP_CATEGORY; $defaults['action'] = 'create_class_groups'; $create_class_groups_form->setDefaults($defaults); $create_class_groups_form->display(); echo '
'; } } Display :: display_footer();