ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilCourseUserData Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Collaboration diagram for ilCourseUserData:

Public Member Functions

 __construct (int $a_user_id, int $a_field_id=0)
 
 setValue (string $a_value)
 
 getValue ()
 
 update ()
 
 delete ()
 
 create ()
 

Static Public Member Functions

static _getValuesByObjId (int $a_obj_id)
 
static _checkRequired (int $a_usr_id, int $a_obj_id)
 
static _deleteByUser (int $a_user_id)
 
static _deleteByField (int $a_field_id)
 

Protected Attributes

ilDBInterface $db
 

Private Member Functions

 read ()
 

Private Attributes

int $user_id
 
int $field_id
 
string $value
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om

Definition at line 25 of file class.ilCourseUserData.php.

Constructor & Destructor Documentation

◆ __construct()

ilCourseUserData::__construct ( int  $a_user_id,
int  $a_field_id = 0 
)

Definition at line 33 of file class.ilCourseUserData.php.

References $DIC, and read().

34  {
35  global $DIC;
36 
37  $this->db = $DIC->database();
38  $this->user_id = $a_user_id;
39  $this->field_id = $a_field_id;
40  if ($this->field_id) {
41  $this->read();
42  }
43  }
global $DIC
Definition: feed.php:28
+ Here is the call graph for this function:

Member Function Documentation

◆ _checkRequired()

static ilCourseUserData::_checkRequired ( int  $a_usr_id,
int  $a_obj_id 
)
static

Definition at line 66 of file class.ilCourseUserData.php.

References $DIC, $ilDB, $query, $res, ilCourseDefinedFieldDefinition\_getRequiredFieldIds(), and ilDBConstants\FETCHMODE_OBJECT.

Referenced by ilObjGroupGUI\checkAgreement(), ilObjCourseGUI\checkAgreement(), and ilMemberAgreementGUI\init().

66  : bool
67  {
68  global $DIC;
69 
70  $ilDB = $DIC->database();
72  if ($required === []) {
73  return true;
74  }
75 
76  //$and = ("AND field_id IN (".implode(",",ilUtil::quoteArray($required)).")");
77  $and = "AND " . $ilDB->in('field_id', $required, false, 'integer');
78 
79  $query = "SELECT COUNT(*) num_entries FROM crs_user_data " .
80  "WHERE usr_id = " . $ilDB->quote($a_usr_id, 'integer') . " " .
81  "AND value != '' AND value IS NOT NULL " .
82  $and . " " .
83  " ";
84  $res = $ilDB->query($query);
85  $row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT);
86  return $row->num_entries == count($required);
87  }
$res
Definition: ltiservices.php:69
global $DIC
Definition: feed.php:28
$query
static _getRequiredFieldIds(int $a_obj_id)
Get required filed id's.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ _deleteByField()

static ilCourseUserData::_deleteByField ( int  $a_field_id)
static

Definition at line 99 of file class.ilCourseUserData.php.

References $DIC, $ilDB, $query, and $res.

Referenced by ilCourseDefinedFieldDefinition\_deleteByContainer(), and ilCourseDefinedFieldDefinition\delete().

99  : void
100  {
101  global $DIC;
102 
103  $ilDB = $DIC['ilDB'];
104 
105  $query = "DELETE FROM crs_user_data " .
106  "WHERE field_id = " . $ilDB->quote($a_field_id, 'integer');
107  $res = $ilDB->manipulate($query);
108  }
$res
Definition: ltiservices.php:69
global $DIC
Definition: feed.php:28
$query
+ Here is the caller graph for this function:

◆ _deleteByUser()

static ilCourseUserData::_deleteByUser ( int  $a_user_id)
static

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

References $DIC, $ilDB, $query, and $res.

89  : void
90  {
91  global $DIC;
92 
93  $ilDB = $DIC->database();
94  $query = "DELETE FROM crs_user_data " .
95  "WHERE usr_id = " . $ilDB->quote($a_user_id, 'integer');
96  $res = $ilDB->manipulate($query);
97  }
$res
Definition: ltiservices.php:69
global $DIC
Definition: feed.php:28
$query

◆ _getValuesByObjId()

static ilCourseUserData::_getValuesByObjId ( int  $a_obj_id)
static

Definition at line 45 of file class.ilCourseUserData.php.

References $DIC, $ilDB, $query, $res, ilCourseDefinedFieldDefinition\_getFieldIds(), ilDBConstants\FETCHMODE_OBJECT, and ILIAS\Repository\int().

Referenced by ilObjectCustomUserFieldsPlaceholderValues\__construct(), ilObjGroupGUI\addCustomData(), ilBookingReservationsTableGUI\getItems(), ilAttendanceList\getNonMemberUserData(), ilCourseMembershipGUI\getPrintMemberData(), ilGroupParticipantsTableGUI\parse(), ilCourseParticipantsTableGUI\parse(), ilMemberExport\readCourseSpecificFieldsData(), ilSubscriberTableGUI\readSubscriberData(), ilWaitingListTableGUI\readUserData(), and ilMemberAgreementGUI\setCourseDefinedFieldValues().

45  : array
46  {
47  global $DIC;
48 
49  $ilDB = $DIC->database();
50  $field_ids = ilCourseDefinedFieldDefinition::_getFieldIds($a_obj_id);
51  if ($field_ids === []) {
52  return array();
53  }
54  $where = "WHERE " . $ilDB->in('field_id', $field_ids, false, 'integer');
55  $query = "SELECT * FROM crs_user_data " .
56  $where;
57 
58  $res = $ilDB->query($query);
59  $user_data = [];
60  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
61  $user_data[(int) $row->usr_id][(int) $row->field_id] = $row->value;
62  }
63  return $user_data;
64  }
$res
Definition: ltiservices.php:69
static _getFieldIds(int $a_container_id, string $a_sort=self::IL_CDF_SORT_ID)
global $DIC
Definition: feed.php:28
$query
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ create()

ilCourseUserData::create ( )

Definition at line 134 of file class.ilCourseUserData.php.

References $query, $res, and getValue().

Referenced by update().

134  : void
135  {
136  $query = "INSERT INTO crs_user_data (value,usr_id,field_id) " .
137  "VALUES( " .
138  $this->db->quote($this->getValue(), 'text') . ", " .
139  $this->db->quote($this->user_id, 'integer') . ", " .
140  $this->db->quote($this->field_id, 'integer') . " " .
141  ")";
142 
143  $res = $this->db->manipulate($query);
144  }
$res
Definition: ltiservices.php:69
$query
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ delete()

ilCourseUserData::delete ( )

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

References $query, and $res.

126  : void
127  {
128  $query = "DELETE FROM crs_user_data " .
129  "WHERE usr_id = " . $this->db->quote($this->user_id, 'integer') . " " .
130  "AND field_id = " . $this->db->quote($this->field_id, 'integer');
131  $res = $this->db->manipulate($query);
132  }
$res
Definition: ltiservices.php:69
$query

◆ getValue()

ilCourseUserData::getValue ( )

Definition at line 115 of file class.ilCourseUserData.php.

References $value.

Referenced by create().

115  : string
116  {
117  return $this->value;
118  }
+ Here is the caller graph for this function:

◆ read()

ilCourseUserData::read ( )
private

Definition at line 146 of file class.ilCourseUserData.php.

References $query, $res, ilDBConstants\FETCHMODE_OBJECT, and setValue().

Referenced by __construct().

146  : void
147  {
148  $query = "SELECT * FROM crs_user_data " .
149  "WHERE usr_id = " . $this->db->quote($this->user_id, 'integer') . " " .
150  "AND field_id = " . $this->db->quote($this->field_id, 'integer');
151  $res = $this->db->query($query);
152  $this->setValue('');
153  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
154  $this->setValue((string) $row->value);
155  }
156  }
$res
Definition: ltiservices.php:69
setValue(string $a_value)
$query
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setValue()

ilCourseUserData::setValue ( string  $a_value)

Definition at line 110 of file class.ilCourseUserData.php.

Referenced by read(), ilMemberAgreementGUI\saveCourseDefinedFields(), and ilRegistrationGUI\validateCustomFields().

110  : void
111  {
112  $this->value = $a_value;
113  }
+ Here is the caller graph for this function:

◆ update()

ilCourseUserData::update ( )

Definition at line 120 of file class.ilCourseUserData.php.

References create().

120  : void
121  {
122  $this->delete();
123  $this->create();
124  }
+ Here is the call graph for this function:

Field Documentation

◆ $db

ilDBInterface ilCourseUserData::$db
protected

Definition at line 31 of file class.ilCourseUserData.php.

◆ $field_id

int ilCourseUserData::$field_id
private

Definition at line 28 of file class.ilCourseUserData.php.

◆ $user_id

int ilCourseUserData::$user_id
private

Definition at line 27 of file class.ilCourseUserData.php.

◆ $value

string ilCourseUserData::$value
private

Definition at line 29 of file class.ilCourseUserData.php.

Referenced by getValue().


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