ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
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
 $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 66 of file class.ilCourseLP.php.

References ilObjCourse\_lookupViewMode(), and IL_CRS_VIEW_OBJECTIVE.

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

67  {
68  include_once "Modules/Course/classes/class.ilObjCourse.php";
70  {
71  return true;
72  }
73  return false;
74  }
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 57 of file class.ilCourseLP.php.

References checkObjectives(), and ilLPObjSettings\LP_MODE_OBJECTIVES.

58  {
59  if($this->checkObjectives())
60  {
62  }
63  return parent::getCurrentMode();
64  }
+ Here is the call graph for this function:

◆ getDefaultMode()

ilCourseLP::getDefaultMode ( )

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

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

36  {
37  if($this->checkObjectives())
38  {
40  }
42  }
+ 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  {
22  return array(
24  );
25  }
26  else
27  {
28  return array(
31  );
32  }
33  }
Create styles array
The data for the language used.

◆ getMailTemplateId()

ilCourseLP::getMailTemplateId ( )

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

References ilCourseMailTemplateTutorContext\ID.

127  {
128  include_once './Modules/Course/classes/class.ilCourseMailTemplateTutorContext.php';
130  }

◆ getMembers()

ilCourseLP::getMembers (   $a_search = true)

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

References ilCourseParticipants\_getInstanceByObjId().

90  {
91  include_once "Modules/Course/classes/class.ilCourseParticipants.php";
92  $member_obj = ilCourseParticipants::_getInstanceByObjId($this->obj_id);
93  return $member_obj->getMembers();
94  }
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
+ Here is the call graph for this function:

◆ getSettingsInfo()

ilCourseLP::getSettingsInfo ( )

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

References $lng, and ilObjCourse\STATUS_DETERMINATION_LP.

77  {
78  global $lng;
79 
80  // #9004
81  include_once("./Modules/Course/classes/class.ilObjCourse.php");
82  $crs = new ilObjCourse($this->obj_id, false);
83  if($crs->getStatusDetermination() == ilObjCourse::STATUS_DETERMINATION_LP)
84  {
85  return $lng->txt("crs_status_determination_lp_info");
86  }
87  }
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 96 of file class.ilCourseLP.php.

References $ilDB, $query, and $row.

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

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