ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilCourseLP Class Reference
+ Inheritance diagram for ilCourseLP:
+ Collaboration diagram for ilCourseLP:

Public Member Functions

 getDefaultMode ()
 
 getValidModes ()
 
 getCurrentMode ()
 
 getSettingsInfo ()
 
 getMembers ($a_search=true)
 
 getMailTemplateId ()
 
- Public Member Functions inherited from ilObjectLP
 resetCaches ()
 
 isAnonymized ()
 
 getDefaultMode ()
 
 getValidModes ()
 
 getCurrentMode ()
 
 isActive ()
 
 getModeText ($a_mode)
 
 getModeInfoText ($a_mode)
 
 getSettingsInfo ()
 
 getCollectionInstance ()
 
 getMembers ($a_search=true)
 
 resetLPDataForCompleteObject ($a_recursive=true)
 
 resetLPDataForUserIds (array $a_user_ids, $a_recursive=true)
 
 handleToTrash ()
 
 handleDelete ()
 
 getMailTemplateId ()
 

Static Public Member Functions

static getDefaultModes ($a_lp_active)
 
- Static Public Member Functions inherited from ilObjectLP
static getInstance ($a_obj_id)
 
static getTypeClass ($a_type)
 
static isSupportedObjectType ($a_type)
 
static handleMove ($a_source_ref_id)
 
static getLPMemberships ($a_usr_id, array $a_obj_ids, $a_parent_ref_id=null, $a_mapped_ref_ids=false)
 Get all objects where given user is member (from LP POV) More...
 
static supportsSpentSeconds ($a_obj_type)
 
static supportsMark ($a_obj_type)
 
static supportsMatrixView ($a_obj_type)
 
static getDefaultModes ($a_lp_active)
 Get available type-specific default modes (no administration needed) More...
 
static saveTypeDefaults (array $a_data)
 
static getTypeDefault ($a_type)
 Get current type default. More...
 

Protected Member Functions

 checkObjectives ()
 
- Protected Member Functions inherited from ilObjectLP
 __construct ($a_obj_id)
 
 resetCustomLPDataForUserIds (array $a_user_ids, $a_recursive=true)
 
 gatherLPUsers ()
 
 updateParentCollections ()
 

Static Protected Member Functions

static isLPMember (array &$a_res, $a_usr_id, $a_obj_ids)
 
- Static Protected Member Functions inherited from ilObjectLP
static isLPMember (array &$a_res, $a_usr_id, $a_obj_ids)
 Find (lp-relevant) members for given object ids. More...
 
static findMembershipsByPath (array &$a_res, $a_usr_id, $a_parent_ref_id, array $a_obj_ids, $a_mapped_ref_ids=false)
 Find (lp-relevant) memberships by path. More...
 
static getTypeDefaultFromDB ($a_type)
 

Additional Inherited Members

- Protected Attributes inherited from ilObjectLP
 $tree
 
 $db
 
 $obj_id
 
 $collection_instance
 
 $mode
 
- Static Protected Attributes inherited from ilObjectLP
static $type_defaults
 

Detailed Description

Definition at line 14 of file class.ilCourseLP.php.

Member Function Documentation

◆ checkObjectives()

ilCourseLP::checkObjectives ( )
protected

Definition at line 60 of file class.ilCourseLP.php.

References ilObjCourse\_lookupViewMode(), and IL_CRS_VIEW_OBJECTIVE.

Referenced by getCurrentMode(), getDefaultMode(), and getValidModes().

61  {
62  include_once "Modules/Course/classes/class.ilObjCourse.php";
64  return true;
65  }
66  return false;
67  }
const IL_CRS_VIEW_OBJECTIVE
static _lookupViewMode($a_id)
lookup view mode of container
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getCurrentMode()

ilCourseLP::getCurrentMode ( )

Definition at line 52 of file class.ilCourseLP.php.

References checkObjectives(), and ilLPObjSettings\LP_MODE_OBJECTIVES.

53  {
54  if ($this->checkObjectives()) {
56  }
57  return parent::getCurrentMode();
58  }
+ Here is the call graph for this function:

◆ getDefaultMode()

ilCourseLP::getDefaultMode ( )

Definition at line 32 of file class.ilCourseLP.php.

References checkObjectives(), ilLPObjSettings\LP_MODE_MANUAL_BY_TUTOR, and ilLPObjSettings\LP_MODE_OBJECTIVES.

33  {
34  if ($this->checkObjectives()) {
36  }
38  }
+ Here is the call graph for this function:

◆ getDefaultModes()

static ilCourseLP::getDefaultModes (   $a_lp_active)
static

Definition at line 16 of file class.ilCourseLP.php.

References array, ilLPObjSettings\LP_MODE_DEACTIVATED, and ilLPObjSettings\LP_MODE_MANUAL_BY_TUTOR.

17  {
18  // objectives cannot be supported
19 
20  if (!$a_lp_active) {
21  return array(
23  );
24  } else {
25  return array(
28  );
29  }
30  }
Create styles array
The data for the language used.

◆ getMailTemplateId()

ilCourseLP::getMailTemplateId ( )

Definition at line 116 of file class.ilCourseLP.php.

References ilCourseMailTemplateTutorContext\ID.

117  {
118  include_once './Modules/Course/classes/class.ilCourseMailTemplateTutorContext.php';
120  }

◆ getMembers()

ilCourseLP::getMembers (   $a_search = true)

Definition at line 81 of file class.ilCourseLP.php.

References ilCourseParticipants\_getInstanceByObjId().

82  {
83  include_once "Modules/Course/classes/class.ilCourseParticipants.php";
84  $member_obj = ilCourseParticipants::_getInstanceByObjId($this->obj_id);
85  return $member_obj->getMembers();
86  }
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
+ Here is the call graph for this function:

◆ getSettingsInfo()

ilCourseLP::getSettingsInfo ( )

Definition at line 69 of file class.ilCourseLP.php.

References $lng, and ilObjCourse\STATUS_DETERMINATION_LP.

70  {
71  global $lng;
72 
73  // #9004
74  include_once("./Modules/Course/classes/class.ilObjCourse.php");
75  $crs = new ilObjCourse($this->obj_id, false);
76  if ($crs->getStatusDetermination() == ilObjCourse::STATUS_DETERMINATION_LP) {
77  return $lng->txt("crs_status_determination_lp_info");
78  }
79  }
const STATUS_DETERMINATION_LP
Class ilObjCourse.
global $lng
Definition: privfeed.php:17

◆ getValidModes()

ilCourseLP::getValidModes ( )

◆ isLPMember()

static ilCourseLP::isLPMember ( array $a_res,
  $a_usr_id,
  $a_obj_ids 
)
staticprotected

Definition at line 88 of file class.ilCourseLP.php.

References $ilDB, $query, and $row.

89  {
90  global $ilDB;
91 
92  // will only find objects with roles for user!
93  // see ilParticipants::_getMembershipByType()
94  $query = " SELECT DISTINCT obd.obj_id, obd.type, obd2.title" .
95  " FROM rbac_ua ua" .
96  " JOIN rbac_fa fa ON (ua.rol_id = fa.rol_id)" .
97  " JOIN object_reference obr ON (fa.parent = obr.ref_id)" .
98  " JOIN object_data obd ON (obr.obj_id = obd.obj_id)" .
99  " JOIN object_data obd2 ON (ua.rol_id = obd2.obj_id)" .
100  " WHERE obd.type = " . $ilDB->quote("crs", "text") .
101  " AND fa.assign = " . $ilDB->quote("y", "text") .
102  " AND ua.usr_id = " . $ilDB->quote($a_usr_id, "integer") .
103  " AND " . $ilDB->in("obd.obj_id", $a_obj_ids, "", "integer");
104  $set = $ilDB->query($query);
105  while ($row = $ilDB->fetchAssoc($set)) {
106  $role = $row["title"];
107  if (!stristr($role, "il_" . $row["type"] . "_admin_") &&
108  !stristr($role, "il_" . $row["type"] . "_tutor_")) {
109  $a_res[$row["obj_id"]] = true;
110  }
111  }
112 
113  return true;
114  }
$query
global $ilDB

The documentation for this class was generated from the following file: