123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * @package chamilo.user
- */
- require_once '../inc/global.inc.php';
- $this_section = SECTION_COURSES;
- api_protect_course_script(true);
- if (api_get_setting('allow_user_course_subscription_by_course_admin') == 'false') {
- if (!api_is_platform_admin()) {
- api_not_allowed(true);
- }
- }
- $tool_name = get_lang("Classes");
- $htmlHeadXtra[] = api_get_jqgrid_js();
- // Extra entries in breadcrumb
- $interbreadcrumb[] = array(
- "url" => "user.php?".api_get_cidreq(),
- "name" => get_lang("ToolUser"),
- );
- $type = isset($_GET['type']) ? Security::remove_XSS($_GET['type']) : 'registered';
- $groupFilter = isset($_GET['group_filter']) ? intval($_GET['group_filter']) : 0;
- $htmlHeadXtra[] = '
- <script>
- $(document).ready( function() {
- $("#group_filter").change(function() {
- window.location = "class.php?'.api_get_cidreq().'&type='.$type.'" +"&group_filter=" + $(this).val();
- });
- });
- </script>';
- Display :: display_header($tool_name, "User");
- $usergroup = new UserGroup();
- if (api_is_allowed_to_edit()) {
- echo '<div class="actions">';
- if ($type == 'registered') {
- echo '<a href="class.php?'.api_get_cidreq().'&type=not_registered">'.
- Display::return_icon('add.png', get_lang("AddClassesToACourse"), array(), ICON_SIZE_MEDIUM).'</a>';
- } else {
- echo '<a href="class.php?'.api_get_cidreq().'&type=registered">'.
- Display::return_icon('empty_evaluation.png', get_lang("Classes"), array(), ICON_SIZE_MEDIUM).'</a>';
- $form = new FormValidator('groups', 'post', api_get_self(), '', '', FormValidator::LAYOUT_INLINE);
- $options = [
- -1 => get_lang('All'),
- 1 => get_lang('SocialGroups'),
- 0 => get_lang('Classes'),
- ];
- $form->addSelect('group_filter', get_lang('Groups'), $options, ['id' => 'group_filter']);
- $form->setDefaults(['group_filter' => $groupFilter]);
- $form->display();
- }
- echo '</div>';
- }
- echo UserManager::getUserSubscriptionTab(4);
- if (api_is_allowed_to_edit()) {
- $action = isset($_GET['action']) ? $_GET['action'] : null;
- switch ($action) {
- case 'add_class_to_course':
- $id = $_GET['id'];
- if (!empty($id)) {
- $usergroup->subscribe_courses_to_usergroup(
- $id,
- array(api_get_course_int_id()),
- false
- );
- }
- break;
- case 'remove_class_from_course':
- $id = $_GET['id'];
- if (!empty($id)) {
- $usergroup->unsubscribe_courses_from_usergroup(
- $id,
- array(api_get_course_int_id())
- );
- }
- break;
- }
- }
- //jqgrid will use this URL to do the selects
- $url = api_get_path(WEB_AJAX_PATH).'model.ajax.php?a=get_usergroups_teacher&type='.$type.'&group_filter='.$groupFilter;
- //The order is important you need to check the the $column variable in the model.ajax.php file
- $columns = array(
- get_lang('Name'),
- get_lang('Users'),
- get_lang('Status'),
- get_lang('Type'),
- get_lang('Actions'),
- );
- //Column config
- $column_model = array(
- array('name'=>'name',
- 'index' => 'name',
- 'width' => '35',
- 'align' => 'left',
- ),
- array(
- 'name' => 'users',
- 'index' => 'users',
- 'width' => '15',
- 'align' => 'left',
- ),
- array(
- 'name' => 'status',
- 'index' => 'status',
- 'width' => '15',
- 'align' => 'left',
- ),
- array(
- 'name' => 'group_type',
- 'index' => 'group_type',
- 'width' => '15',
- 'align' => 'left',
- ),
- array(
- 'name' => 'actions',
- 'index' => 'actions',
- 'width' => '20',
- 'align' => 'left',
- 'sortable' => 'false',
- ),
- );
- // Autowidth
- $extra_params['autowidth'] = 'true';
- // height auto
- $extra_params['height'] = 'auto';
- // With this function we can add actions to the jgrid
- $action_links = 'function action_formatter (cellvalue, options, rowObject) {
- return \''
- .' <a href="class.php?action=add_class&id=\'+options.rowId+\'"><img src="../img/icons/22/user_to_class.png" title="'.get_lang('SubscribeUsersToClass').'"></a>'
- .' <a onclick="javascript:if(!confirm('."\'".addslashes(api_htmlentities(get_lang("ConfirmYourChoice"),ENT_QUOTES))."\'".')) return false;" href="?action=delete&id=\'+options.rowId+\'"><img title="'.get_lang('Delete').'" src="../img/delete.png"></a>\';
- }';
- ?>
- <script>
- $(function() {
- <?php
- // grid definition see the $usergroup>display() function
- echo Display::grid_js('usergroups', $url, $columns, $column_model, $extra_params, array(), $action_links, true);
- ?>
- });
- </script>
- <?php
- $usergroup->display_teacher_view();
- Display :: display_footer();
|