ILIAS  release_7 Revision v7.30-3-g800a261c036
ilSessionWaitingList Class Reference

Session waiting list. More...

+ Inheritance diagram for ilSessionWaitingList:
+ Collaboration diagram for ilSessionWaitingList:

Public Member Functions

 addToList ($a_usr_id)
 Add to waiting list and raise event. More...
 
- Public Member Functions inherited from ilWaitingList
 __construct ($a_obj_id)
 Constructor. More...
 
 getObjId ()
 get obj id More...
 
 addToList ($a_usr_id)
 add to list More...
 
 updateSubscriptionTime ($a_usr_id, $a_subtime)
 update subscription time More...
 
 removeFromList ($a_usr_id)
 remove usr from list More...
 
 isOnList ($a_usr_id)
 check if is on waiting list More...
 
 getCountUsers ()
 get number of users More...
 
 getPosition ($a_usr_id)
 get position More...
 
 getAllUsers ()
 get all users on waiting list More...
 
 getUser ($a_usr_id)
 get user More...
 
 getUserIds ()
 Get all user ids of users on waiting list. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from ilWaitingList
static lookupListSize ($a_obj_id)
 Lookup waiting lit size. More...
 
static _deleteAll ($a_obj_id)
 delete all More...
 
static _deleteUser ($a_usr_id)
 Delete user. More...
 
static deleteUserEntry ($a_usr_id, $a_obj_id)
 Delete one user entry. More...
 
static _isOnList ($a_usr_id, $a_obj_id)
 Check if a user on the waiting list. More...
 
static _preloadOnListInfo ($a_usr_ids, $a_obj_ids)
 Preload on list info. More...
 
- Static Public Attributes inherited from ilWaitingList
static $is_on_list = array()
 

Detailed Description

Session waiting list.

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

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

Member Function Documentation

◆ addToList()

ilSessionWaitingList::addToList (   $a_usr_id)

Add to waiting list and raise event.

Parameters
int$a_usr_id

Reimplemented from ilWaitingList.

Definition at line 21 of file class.ilSessionWaitingList.php.

22 {
23 global $DIC;
24
25 $ilAppEventHandler = $DIC['ilAppEventHandler'];
26 $ilLog = $DIC->logger()->sess();
27
28 if (!parent::addToList($a_usr_id)) {
29 return false;
30 }
31
32 $ilLog->info('Raise new event: Modules/Session addToWaitingList');
33 $ilAppEventHandler->raise(
34 "Modules/Session",
35 'addToWaitingList',
36 array(
37 'obj_id' => $this->getObjId(),
38 'usr_id' => $a_usr_id
39 )
40 );
41 return true;
42 }
global $DIC
Definition: goto.php:24

References $DIC, and ilWaitingList\getObjId().

+ Here is the call graph for this function:

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