123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- <?php
- /* For licensing terms, see /license.txt */
- use Chamilo\CourseBundle\Entity\CItemProperty;
- use Chamilo\UserBundle\Entity\User;
- use Chamilo\CoreBundle\Entity\Repository\CourseRepository;
- use Chamilo\CoreBundle\Entity\Session;
- use Chamilo\CoreBundle\Entity\SessionRelCourseRelUser;
- require_once __DIR__.'/../inc/global.inc.php';
- api_protect_course_script();
- $is_allowed_to_edit = api_is_allowed_to_edit(false, true, false, false);
- if (!$is_allowed_to_edit) {
- api_not_allowed(true);
- }
- $lpId = isset($_GET['lp_id']) ? intval($_GET['lp_id']) : 0;
- if (empty($lpId)) {
- api_not_allowed(true);
- }
- $oLP = new learnpath(api_get_course_id(), $lpId, api_get_user_id());
- $interbreadcrumb[] = array(
- 'url' => 'lp_controller.php?action=list&'.api_get_cidreq(),
- 'name' => get_lang('LearningPaths')
- );
- $interbreadcrumb[] = array(
- 'url' => api_get_self()."?action=build&lp_id=".$oLP->get_id().'&'.api_get_cidreq(),
- 'name' => $oLP->get_name()
- );
- $courseId = api_get_course_int_id();
- $courseCode = api_get_course_id();
- $sessionId = api_get_session_id();
- $url = api_get_self().'?'.api_get_cidreq().'&lp_id='.$lpId;
- $lp = new \learnpath($courseCode, $lpId, api_get_user_id());
- $em = Database::getManager();
- /** @var CourseRepository $courseRepo */
- $courseRepo = $em->getRepository('ChamiloCoreBundle:Course');
- /** @var Session $session */
- $session = null;
- if (!empty($sessionId)) {
- $session = $em->getRepository('ChamiloCoreBundle:Session')->find($sessionId);
- }
- // Find course.
- $course = $courseRepo->find($courseId);
- $subscribedUsers = [];
- // Getting subscribe users to the course.
- if (!$session) {
- $subscribedUsers = $courseRepo
- ->getSubscribedStudents($course)
- ->getQuery()
- ->getResult();
- } else {
- $session
- ->getUserCourseSubscriptionsByStatus($course, Session::STUDENT)
- ->forAll(function ($i, SessionRelCourseRelUser $sessionCourseUser) use (&$subscribedUsers) {
- $subscribedUsers[$i] = $sessionCourseUser->getUser();
- });
- }
- // Getting all users in a nice format.
- $choices = array();
- /** @var User $user */
- foreach ($subscribedUsers as $user) {
- $choices[$user->getUserId()] = $user->getCompleteNameWithClasses();
- }
- // Getting subscribed users to a LP.
- $subscribedUsersInLp = $em->getRepository('ChamiloCourseBundle:CItemProperty')->getUsersSubscribedToItem(
- 'learnpath',
- $lpId,
- $course,
- $session
- );
- $selectedChoices = array();
- foreach ($subscribedUsersInLp as $itemProperty) {
- $selectedChoices[] = $itemProperty->getToUser()->getId();
- }
- //Building the form for Users
- $formUsers = new \FormValidator('lp_edit', 'post', $url);
- $formUsers->addElement('hidden', 'user_form', 1);
- $userMultiSelect = $formUsers->addElement('advmultiselect', 'users', get_lang('Users'), $choices);
- $formUsers->addButtonSave(get_lang('Save'));
- $defaults = array();
- if (!empty($selectedChoices)) {
- $defaults['users'] = $selectedChoices;
- }
- $formUsers->setDefaults($defaults);
- //Building the form for Groups
- $form = new \FormValidator('lp_edit', 'post', $url);
- $form->addElement('hidden', 'group_form', 1);
- // Group list
- $groupList = \CourseManager::get_group_list_of_course(
- api_get_course_id(),
- api_get_session_id(),
- 1
- );
- $groupChoices = array_column($groupList, 'name', 'id');
- // Subscribed groups to a LP
- $subscribedGroupsInLp = $em->getRepository('ChamiloCourseBundle:CItemProperty')->getGroupsSubscribedToItem(
- 'learnpath',
- $lpId,
- $course,
- $session
- );
- $selectedGroupChoices = array();
- /** @var CItemProperty $itemProperty */
- foreach ($subscribedGroupsInLp as $itemProperty) {
- $selectedGroupChoices[] = $itemProperty->getGroup()->getId();
- }
- $groupMultiSelect = $form->addElement('advmultiselect', 'groups', get_lang('Groups'), $groupChoices);
- // submit button
- $form->addButtonSave(get_lang('Save'));
- $defaults = array();
- if (!empty($selectedGroupChoices)) {
- $defaults['groups'] = $selectedGroupChoices;
- }
- $form->setDefaults($defaults);
- $tpl = new Template();
- $currentUser = $em->getRepository('ChamiloUserBundle:User')->find(api_get_user_id());
- if ($form->validate()) {
- $values = $form->getSubmitValues();
- // Subscribing users
- $users = isset($values['users']) ? $values['users'] : [];
- $userForm = isset($values['user_form']) ? $values['user_form'] : [];
- if (!empty($userForm)) {
- $em->getRepository('ChamiloCourseBundle:CItemProperty')->subscribeUsersToItem(
- $currentUser,
- 'learnpath',
- $course,
- $session,
- $lpId,
- $users
- );
- Display::addFlash(Display::return_message(get_lang('Updated')));
- }
- // Subscribing groups
- $groups = isset($values['groups']) ? $values['groups'] : [];
- $groupForm = isset($values['group_form']) ? $values['group_form'] : [];
- if (!empty($groupForm)) {
- $em->getRepository('ChamiloCourseBundle:CItemProperty')->subscribeGroupsToItem(
- $currentUser,
- 'learnpath',
- $course,
- $session,
- $lpId,
- $groups
- );
- Display::addFlash(Display::return_message(get_lang('Updated')));
- }
- header("Location: $url");
- exit;
- } else {
- $headers = [get_lang('SubscribeUsersToLp'), get_lang('SubscribeGroupsToLp')];
- $tabs = Display::tabs($headers, [$formUsers->toHtml(), $form->toHtml()]);
- $tpl->assign('tabs', $tabs);
- }
- $layout = $tpl->get_template('learnpath/subscribe_users.tpl');
- $tpl->display($layout);
|