Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create_learningpath web service - refs BT#17453 #3367

Open
wants to merge 16 commits into
base: 1.11.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main/admin/course_edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
$courseTeacherNames = [];
foreach ($course_teachers as $courseTeacherId) {
/** @var User $courseTeacher */
$courseTeacher = UserManager::getRepository()->find($courseTeacherId);
$courseTeacher = api_get_user_entity($courseTeacherId);
$courseTeacherNames[$courseTeacher->getId()] = UserManager::formatUserFullName($courseTeacher, true);
}

Expand Down
5 changes: 2 additions & 3 deletions main/auth/profile.php
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,7 @@ function show_image(image,width,height) {

$wrong_current_password = false;
$user_data = $form->getSubmitValues(1);
/** @var User $user */
$user = UserManager::getRepository()->find(api_get_user_id());
$user = api_get_user_entity();

// set password if a new one was provided
$validPassword = false;
Expand Down Expand Up @@ -664,7 +663,7 @@ function show_image(image,width,height) {

if ($hook) {
Database::getManager()->clear(User::class); // Avoid cache issue (user entity is used before)
$user = api_get_user_entity(api_get_user_id()); // Get updated user info for hook event
$user = api_get_user_entity(); // Get updated user info for hook event
$hook->setEventData(['user' => $user]);
$hook->notifyUpdateUser(HOOK_EVENT_TYPE_POST);
}
Expand Down
4 changes: 2 additions & 2 deletions main/course_home/course_home.php
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ function buttonForAllShowHide()
/**
* @var Chamilo\UserBundle\Entity\User
*/
$user = UserManager::getRepository()->find(api_get_user_id());
$user = api_get_user_entity();
if ($user) {
foreach ($user->getCurrentlyAccessibleSessions() as $session) {
$redirectionTarget = api_get_self().'?id_session='.$session->getId();
Expand All @@ -253,7 +253,7 @@ function buttonForAllShowHide()
/**
* @var Chamilo\UserBundle\Entity\User
*/
$user = UserManager::getRepository()->find(api_get_user_id());
$user = api_get_user_entity();
if ($user && !$user->getCurrentlyAccessibleSessions()) {
// subscription was probably refused because user session expired, go back to page "about"
$redirectionTarget = api_get_path(WEB_PATH).'course/'.$courseId.'/about';
Expand Down
2 changes: 1 addition & 1 deletion main/cron/import_csv.php
Original file line number Diff line number Diff line change
Expand Up @@ -1286,7 +1286,7 @@ private function importCalendarStatic($file, $moveFile = true)
];
/** @var CItemProperty $itemProperty */
$itemProperty = $em->getRepository('ChamiloCourseBundle:CItemProperty')->findOneBy($criteria);
$courseEntity = $em->getRepository('ChamiloCoreBundle:Course')->find($courseInfo['real_id']);
$courseEntity = api_get_course_entity($courseInfo['real_id']);
if ($itemProperty && $courseEntity) {
$itemProperty->setCourse($courseEntity);
$em->persist($itemProperty);
Expand Down
3 changes: 1 addition & 2 deletions main/cron/user_import/resend_email_with_new_password.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@
$pass = api_substr($row['username'], 0, 4).rand(0, 9).rand(0, 9);

if ($user) {
/** @var User $user */
$user = $repository->find($row['user_id']);
$user = api_get_user_entity($row['user_id']);
$user->setPlainPassword($pass);
$userManager->updateUser($user, true);
} else {
Expand Down
4 changes: 2 additions & 2 deletions main/inc/ajax/skill.ajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@
exit;
}

$session = $em->getRepository('ChamiloCoreBundle:Session')->find($sessionId);
$session = api_get_session_entity($sessionId);
/** @var \Chamilo\SkillBundle\Entity\SkillRelItem $skillRelItem */
$skillRelItem = $em->getRepository('ChamiloSkillBundle:SkillRelItem')->findOneBy(
['itemId' => $itemId, 'itemType' => $typeId, 'skill' => $skillId]
Expand Down Expand Up @@ -498,7 +498,7 @@
$course = api_get_course_entity($courseId);
$skillUser->setCourse($course);
if (!empty($sessionId)) {
$session = $em->getRepository('ChamiloCoreBundle:Session')->find($sessionId);
$session = api_get_session_entity($sessionId);
$skillUser->setSession($session);
}

Expand Down
720 changes: 157 additions & 563 deletions main/inc/lib/add_course.lib.inc.php

Large diffs are not rendered by default.

Loading