Add COURSE_RELATION_TYPE_COURSE_MANAGER and SESSION_RELATION_TYPE_COURSE_MANAGER constants to main_api.lib.php. Replace '1' with COURSE_RELATION_TYPE_COURSE_MANAGER constant in relation_type query - refs #7296

1.9.x
Imanol Losada 11 years ago
parent e315422c25
commit 4cb7ac5e1f
  1. 2
      main/inc/lib/course.lib.php
  2. 4
      main/inc/lib/main_api.lib.php

@ -3205,7 +3205,7 @@ class CourseManager
if (!$showAllAssignedCourses) {
$whereConditions .= " AND status = ".COURSEMANAGER;
} else {
$whereConditions .= " AND relation_type = '1'";
$whereConditions .= " AND relation_type = ".COURSE_RELATION_TYPE_COURSE_MANAGER;
}
break;
case DRH:

@ -295,6 +295,10 @@ define('DRAWING_ASCIISVG', '{DRAWING_ASCIISVG}');
// Forcing PclZip library to use a custom temporary folder.
define('PCLZIP_TEMPORARY_DIR', api_get_path(SYS_ARCHIVE_PATH));
// Relations type with Course manager
define('COURSE_RELATION_TYPE_COURSE_MANAGER', 1);
define('SESSION_RELATION_TYPE_COURSE_MANAGER', 1);
// Relations type with Human resources manager
define('COURSE_RELATION_TYPE_RRHH', 1);
define('SESSION_RELATION_TYPE_RRHH', 1);

Loading…
Cancel
Save