ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilECSCourseMemberAssignment Class Reference

Storage of ecs course assignments. More...

+ Collaboration diagram for ilECSCourseMemberAssignment:

Public Member Functions

 __construct (int $a_id=0)
 Constructor. More...
 
 getId ()
 
 setServer (int $a_server)
 Set server. More...
 
 getServer ()
 Get server. More...
 
 setMid (int $a_mid)
 
 getMid ()
 
 setCmsId (int $a_id)
 
 getCmsId ()
 
 setCmsSubId (int $a_id)
 
 getCmsSubId ()
 
 setObjId (int $a_id)
 
 getObjId ()
 
 setUid (string $a_id)
 
 getUid ()
 
 setStatus (bool $a_status)
 
 getStatus ()
 
 save ()
 Save new entry. More...
 
 update ()
 Update assignemt. More...
 
 delete ()
 Delete entry. More...
 

Static Public Member Functions

static lookupMissingAssignmentsOfUser (string $a_usr_id)
 Lookup missing assignments;. More...
 
static deleteByObjId (int $a_obj_id)
 Delete by obj_id. More...
 
static deleteByServerId (int $a_server_id)
 Delete by server id. More...
 
static lookupUserIds (int $a_cms_id, ?int $a_cms_sub_id, int $a_obj_id)
 Lookup user ids. More...
 
static lookupAssignment (int $a_cms_id, ?int $a_cms_sub_id, int $a_obj_id, string $a_usr_id)
 Lookup assignment of user. More...
 

Data Fields

const STATUS_ASSIGNED = 0
 
const STATUS_LOCAL_DELETED = 1
 

Protected Member Functions

 read ()
 Read from db. More...
 

Private Attributes

ilDBInterface $db
 
int $id
 
int $server
 
int $mid
 
int $cms_id
 
int $cms_sub_id = 0
 
int $obj_id
 
string $uid
 
bool $status = false
 

Detailed Description

Storage of ecs course assignments.

Author
Stefan Meyer smeye.nosp@m.r.il.nosp@m.ias@g.nosp@m.mx.d.nosp@m.e

Definition at line 24 of file class.ilECSCourseMemberAssignment.php.

Constructor & Destructor Documentation

◆ __construct()

ilECSCourseMemberAssignment::__construct ( int  $a_id = 0)

Constructor.

Definition at line 44 of file class.ilECSCourseMemberAssignment.php.

References $DIC, and read().

45  {
46  global $DIC;
47 
48  $this->db = $DIC->database();
49 
50  $this->id = $a_id;
51 
52  $this->read();
53  }
global $DIC
Definition: shib_login.php:22
+ Here is the call graph for this function:

Member Function Documentation

◆ delete()

ilECSCourseMemberAssignment::delete ( )

Delete entry.

Definition at line 300 of file class.ilECSCourseMemberAssignment.php.

References getId().

300  : bool
301  {
302  $query = 'DELETE FROM ecs_course_assignments ' .
303  'WHERE id = ' . $this->db->quote($this->getId(), 'integer');
304  $this->db->manipulate($query);
305  return true;
306  }
+ Here is the call graph for this function:

◆ deleteByObjId()

static ilECSCourseMemberAssignment::deleteByObjId ( int  $a_obj_id)
static

Delete by obj_id.

Definition at line 80 of file class.ilECSCourseMemberAssignment.php.

References $DIC, and $ilDB.

80  : bool
81  {
82  global $DIC;
83 
84  $ilDB = $DIC['ilDB'];
85 
86  $query = 'DELETE FROM ecs_course_assignments ' .
87  'WHERE obj_id = ' . $ilDB->quote($a_obj_id, 'integer');
88  $ilDB->manipulate($query);
89  return true;
90  }
global $DIC
Definition: shib_login.php:22

◆ deleteByServerId()

static ilECSCourseMemberAssignment::deleteByServerId ( int  $a_server_id)
static

Delete by server id.

Definition at line 95 of file class.ilECSCourseMemberAssignment.php.

References $DIC, and $ilDB.

95  : bool
96  {
97  global $DIC;
98 
99  $ilDB = $DIC['ilDB'];
100 
101  $query = 'DELETE FROM ecs_course_assignments ' .
102  'WHERE sid = ' . $ilDB->quote($a_server_id, 'integer');
103  $ilDB->manipulate($query);
104  return true;
105  }
global $DIC
Definition: shib_login.php:22

◆ getCmsId()

ilECSCourseMemberAssignment::getCmsId ( )

Definition at line 199 of file class.ilECSCourseMemberAssignment.php.

References $cms_id.

Referenced by save(), and update().

199  : int
200  {
201  return $this->cms_id;
202  }
+ Here is the caller graph for this function:

◆ getCmsSubId()

ilECSCourseMemberAssignment::getCmsSubId ( )

Definition at line 209 of file class.ilECSCourseMemberAssignment.php.

References $cms_sub_id.

Referenced by save(), and update().

209  : int
210  {
211  return $this->cms_sub_id;
212  }
+ Here is the caller graph for this function:

◆ getId()

ilECSCourseMemberAssignment::getId ( )

Definition at line 163 of file class.ilECSCourseMemberAssignment.php.

References $id.

Referenced by delete(), read(), save(), and update().

163  : int
164  {
165  return $this->id;
166  }
+ Here is the caller graph for this function:

◆ getMid()

ilECSCourseMemberAssignment::getMid ( )

Definition at line 189 of file class.ilECSCourseMemberAssignment.php.

References $mid.

Referenced by save(), and update().

189  : int
190  {
191  return $this->mid;
192  }
+ Here is the caller graph for this function:

◆ getObjId()

ilECSCourseMemberAssignment::getObjId ( )

Definition at line 219 of file class.ilECSCourseMemberAssignment.php.

References $obj_id.

Referenced by save(), and update().

219  : int
220  {
221  return $this->obj_id;
222  }
+ Here is the caller graph for this function:

◆ getServer()

ilECSCourseMemberAssignment::getServer ( )

Get server.

Definition at line 179 of file class.ilECSCourseMemberAssignment.php.

References $server.

Referenced by save(), and update().

179  : int
180  {
181  return $this->server;
182  }
+ Here is the caller graph for this function:

◆ getStatus()

ilECSCourseMemberAssignment::getStatus ( )

Definition at line 239 of file class.ilECSCourseMemberAssignment.php.

References $status.

Referenced by save(), and update().

239  : bool
240  {
241  return $this->status;
242  }
+ Here is the caller graph for this function:

◆ getUid()

ilECSCourseMemberAssignment::getUid ( )

Definition at line 229 of file class.ilECSCourseMemberAssignment.php.

References $uid.

Referenced by save(), and update().

229  : string
230  {
231  return $this->uid;
232  }
+ Here is the caller graph for this function:

◆ lookupAssignment()

static ilECSCourseMemberAssignment::lookupAssignment ( int  $a_cms_id,
?int  $a_cms_sub_id,
int  $a_obj_id,
string  $a_usr_id 
)
static

Lookup assignment of user.

Definition at line 138 of file class.ilECSCourseMemberAssignment.php.

References $DIC, $ilDB, $res, ilDBConstants\FETCHMODE_OBJECT, and null.

Referenced by ilECSCmsCourseMemberCommandQueueHandler\refreshAssignmentStatus().

139  {
140  global $DIC;
141 
142  $ilDB = $DIC['ilDB'];
143 
144  if (is_null($a_cms_sub_id)) {
145  $cms_sub_id_query = 'AND cms_sub_id IS NULL ';
146  } else {
147  $cms_sub_id_query = 'AND cms_sub_id = ' . $ilDB->quote($a_cms_sub_id, 'integer') . ' ';
148  }
149 
150  $query = 'SELECT id FROM ecs_course_assignments ' .
151  'WHERE cms_id = ' . $ilDB->quote($a_cms_id, 'integer') . ' ' .
152  $cms_sub_id_query .
153  'AND obj_id = ' . $ilDB->quote($a_obj_id, 'integer') . ' ' .
154  'AND usr_id = ' . $ilDB->quote($a_usr_id, 'text');
155  $res = $ilDB->query($query);
156  if ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
157  return new ilECSCourseMemberAssignment((int) $row->id);
158  }
159  return null;
160  }
$res
Definition: ltiservices.php:66
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
Storage of ecs course assignments.
+ Here is the caller graph for this function:

◆ lookupMissingAssignmentsOfUser()

static ilECSCourseMemberAssignment::lookupMissingAssignmentsOfUser ( string  $a_usr_id)
static

Lookup missing assignments;.

Parameters
string$a_usr_idaccount
Returns
ilECSCourseMemberAssignment[]

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

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

Referenced by ilECSAppEventListener\handleMembership().

60  : array
61  {
62  global $DIC;
63 
64  $ilDB = $DIC['ilDB'];
65 
66  $query = 'SELECT id FROM ecs_course_assignments ' .
67  'WHERE usr_id = ' . $ilDB->quote($a_usr_id, 'text');
68  $res = $ilDB->query($query);
69 
70  $assignments = array();
71  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
72  $assignments[] = new self((int) $row->id);
73  }
74  return $assignments;
75  }
$res
Definition: ltiservices.php:66
global $DIC
Definition: shib_login.php:22
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ lookupUserIds()

static ilECSCourseMemberAssignment::lookupUserIds ( int  $a_cms_id,
?int  $a_cms_sub_id,
int  $a_obj_id 
)
static

Lookup user ids.

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

References $DIC, $ilDB, $res, and ilDBConstants\FETCHMODE_OBJECT.

Referenced by ilECSCmsCourseMemberCommandQueueHandler\refreshAssignmentStatus().

110  : array
111  {
112  global $DIC;
113 
114  $ilDB = $DIC['ilDB'];
115 
116  if (is_null($a_cms_sub_id)) {
117  $cms_sub_id_query = 'AND cms_sub_id IS NULL ';
118  } else {
119  $cms_sub_id_query = 'AND cms_sub_id = ' . $ilDB->quote($a_cms_sub_id, 'integer') . ' ';
120  }
121 
122  $query = 'SELECT usr_id FROM ecs_course_assignments ' .
123  'WHERE cms_id = ' . $ilDB->quote($a_cms_id, 'integer') . ' ' .
124  $cms_sub_id_query .
125  'AND obj_id = ' . $ilDB->quote($a_obj_id, 'integer');
126  $res = $ilDB->query($query);
127 
128  $usr_ids = [];
129  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
130  $usr_ids[] = $row->usr_id;
131  }
132  return $usr_ids;
133  }
$res
Definition: ltiservices.php:66
global $DIC
Definition: shib_login.php:22
+ Here is the caller graph for this function:

◆ read()

ilECSCourseMemberAssignment::read ( )
protected

Read from db.

Definition at line 313 of file class.ilECSCourseMemberAssignment.php.

References $res, ilDBConstants\FETCHMODE_OBJECT, getId(), setCmsId(), setCmsSubId(), setMid(), setObjId(), setServer(), setStatus(), and setUid().

Referenced by __construct().

313  : bool
314  {
315  if (!$this->getId()) {
316  return false;
317  }
318 
319  $query = 'SELECT * FROM ecs_course_assignments ' .
320  'WHERE id = ' . $this->db->quote($this->getId(), 'integer');
321  $res = $this->db->query($query);
322  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
323  $this->setServer((int) $row->sid);
324  $this->setMid((int) $row->mid);
325  $this->setCmsId((int) $row->cms_id);
326  $this->setCmsSubId((int) $row->cms_sub_id);
327  $this->setObjId((int) $row->obj_id);
328  $this->setUid($row->usr_id);
329  $this->setStatus((bool) $row->status);
330  }
331  return true;
332  }
$res
Definition: ltiservices.php:66
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ save()

ilECSCourseMemberAssignment::save ( )

Save new entry.

Definition at line 247 of file class.ilECSCourseMemberAssignment.php.

References getCmsId(), getCmsSubId(), getId(), getMid(), getObjId(), getServer(), getStatus(), and getUid().

247  : bool
248  {
249  $this->id = $this->db->nextId('ecs_course_assignments');
250 
251  $assignment = self::lookupAssignment(
252  $this->getCmsId(),
253  $this->getCmsSubId(),
254  $this->getObjId(),
255  $this->getUid()
256  );
257  if ($assignment instanceof self) {
258  $assignment->update();
259  return true;
260  }
261 
262  $query = 'INSERT INTO ecs_course_assignments ' .
263  '(id,sid,mid,cms_id,cms_sub_id,obj_id,usr_id,status) ' .
264  'VALUES( ' .
265  $this->db->quote($this->getId(), 'integer') . ', ' .
266  $this->db->quote($this->getServer(), 'integer') . ', ' .
267  $this->db->quote($this->getMid(), 'integer') . ', ' .
268  $this->db->quote($this->getCmsId(), 'integer') . ', ' .
269  $this->db->quote($this->getCmsSubId(), 'integer') . ', ' .
270  $this->db->quote($this->getObjId(), 'integer') . ', ' .
271  $this->db->quote($this->getUid(), 'text') . ', ' .
272  $this->db->quote($this->getStatus(), 'integer') . ' ' .
273  ')';
274  $this->db->manipulate($query);
275  return true;
276  }
+ Here is the call graph for this function:

◆ setCmsId()

ilECSCourseMemberAssignment::setCmsId ( int  $a_id)

Definition at line 194 of file class.ilECSCourseMemberAssignment.php.

Referenced by read().

194  : void
195  {
196  $this->cms_id = $a_id;
197  }
+ Here is the caller graph for this function:

◆ setCmsSubId()

ilECSCourseMemberAssignment::setCmsSubId ( int  $a_id)

Definition at line 204 of file class.ilECSCourseMemberAssignment.php.

Referenced by read().

204  : void
205  {
206  $this->cms_sub_id = $a_id;
207  }
+ Here is the caller graph for this function:

◆ setMid()

ilECSCourseMemberAssignment::setMid ( int  $a_mid)

Definition at line 184 of file class.ilECSCourseMemberAssignment.php.

Referenced by read().

184  : void
185  {
186  $this->mid = $a_mid;
187  }
+ Here is the caller graph for this function:

◆ setObjId()

ilECSCourseMemberAssignment::setObjId ( int  $a_id)

Definition at line 214 of file class.ilECSCourseMemberAssignment.php.

Referenced by read().

214  : void
215  {
216  $this->obj_id = $a_id;
217  }
+ Here is the caller graph for this function:

◆ setServer()

ilECSCourseMemberAssignment::setServer ( int  $a_server)

Set server.

Definition at line 171 of file class.ilECSCourseMemberAssignment.php.

References ILIAS\UI\examples\Progress\Bar\server().

Referenced by read().

171  : void
172  {
173  $this->server = $a_server;
174  }
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
Definition: server.php:43
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setStatus()

ilECSCourseMemberAssignment::setStatus ( bool  $a_status)

Definition at line 234 of file class.ilECSCourseMemberAssignment.php.

Referenced by read().

234  : void
235  {
236  $this->status = $a_status;
237  }
+ Here is the caller graph for this function:

◆ setUid()

ilECSCourseMemberAssignment::setUid ( string  $a_id)

Definition at line 224 of file class.ilECSCourseMemberAssignment.php.

Referenced by read().

224  : void
225  {
226  $this->uid = $a_id;
227  }
+ Here is the caller graph for this function:

◆ update()

ilECSCourseMemberAssignment::update ( )

Update assignemt.

Definition at line 281 of file class.ilECSCourseMemberAssignment.php.

References getCmsId(), getCmsSubId(), getId(), getMid(), getObjId(), getServer(), getStatus(), and getUid().

281  : bool
282  {
283  $query = 'UPDATE ecs_course_assignments ' .
284  'SET ' .
285  'sid = ' . $this->db->quote($this->getServer(), 'integer') . ', ' .
286  'mid = ' . $this->db->quote($this->getMid(), 'integer') . ', ' .
287  'cms_id = ' . $this->db->quote($this->getCmsId(), 'integer') . ', ' .
288  'cms_sub_id = ' . $this->db->quote($this->getCmsSubId(), 'integer') . ', ' .
289  'obj_id = ' . $this->db->quote($this->getObjId(), 'integer') . ', ' .
290  'usr_id = ' . $this->db->quote($this->getUid(), 'text') . ', ' .
291  'status = ' . $this->db->quote($this->getStatus(), 'integer') . ' ' .
292  'WHERE id = ' . $this->db->quote($this->getId(), 'integer');
293  $this->db->manipulate($query);
294  return true;
295  }
+ Here is the call graph for this function:

Field Documentation

◆ $cms_id

int ilECSCourseMemberAssignment::$cms_id
private

Definition at line 34 of file class.ilECSCourseMemberAssignment.php.

Referenced by getCmsId().

◆ $cms_sub_id

int ilECSCourseMemberAssignment::$cms_sub_id = 0
private

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

Referenced by getCmsSubId().

◆ $db

ilDBInterface ilECSCourseMemberAssignment::$db
private

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

◆ $id

int ilECSCourseMemberAssignment::$id
private

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

Referenced by getId().

◆ $mid

int ilECSCourseMemberAssignment::$mid
private

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

Referenced by getMid().

◆ $obj_id

int ilECSCourseMemberAssignment::$obj_id
private

Definition at line 36 of file class.ilECSCourseMemberAssignment.php.

Referenced by getObjId().

◆ $server

int ilECSCourseMemberAssignment::$server
private

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

Referenced by getServer().

◆ $status

bool ilECSCourseMemberAssignment::$status = false
private

Definition at line 38 of file class.ilECSCourseMemberAssignment.php.

Referenced by getStatus().

◆ $uid

string ilECSCourseMemberAssignment::$uid
private

Definition at line 37 of file class.ilECSCourseMemberAssignment.php.

Referenced by getUid().

◆ STATUS_ASSIGNED

const ilECSCourseMemberAssignment::STATUS_ASSIGNED = 0

Definition at line 26 of file class.ilECSCourseMemberAssignment.php.

◆ STATUS_LOCAL_DELETED

const ilECSCourseMemberAssignment::STATUS_LOCAL_DELETED = 1

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


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