|
ILIAS
Release_5_0_x_branch Revision 61816
|
Inheritance diagram for ilParticipants:
Collaboration diagram for ilParticipants:Public Member Functions | |
| __construct ($a_component_name, $a_obj_id) | |
| Singleton Constructor. | |
| getObjId () | |
| get current obj_id | |
| getType () | |
| Get object type. | |
| getNotificationRecipients () | |
| Get admin, tutor which have notification enabled. | |
| getCountMembers () | |
| Get number of members (not participants) | |
| getCountParticipants () | |
| Get number of participants. | |
| getParticipants () | |
| Get all participants ids. | |
| getMembers () | |
| Get all members ids (admins and tutors are not members) Use get participants to fetch all. | |
| getAdmins () | |
| Get all admins ids. | |
| getCountAdmins () | |
| Get number of admins. | |
| getTutors () | |
| Get all tutors ids. | |
| isAdmin ($a_usr_id) | |
| is user admin | |
| isTutor ($a_usr_id) | |
| is user tutor | |
| isMember ($a_usr_id) | |
| is user member | |
| isAssigned ($a_usr_id) | |
| check if user is assigned | |
| isLastAdmin ($a_usr_id) | |
| Check if user is last admin. | |
| getRoles () | |
| Get course roles. | |
| getAssignedRoles ($a_usr_id) | |
| Get assigned roles. | |
| updateRoleAssignments ($a_usr_id, $a_roles) | |
| Update role assignments. | |
| checkLastAdmin ($a_usr_ids) | |
| Check if user for deletion are last admins. | |
| isBlocked ($a_usr_id) | |
| Check if user is blocked. | |
| hasPassed ($a_usr_id) | |
| Check if user has passed course. | |
| delete ($a_usr_id) | |
| Drop user from all roles. | |
| updateBlocked ($a_usr_id, $a_blocked) | |
| Update blocked status. | |
| updateNotification ($a_usr_id, $a_notification) | |
| Update notification status. | |
| add ($a_usr_id, $a_role) | |
| Add user to course. | |
| deleteParticipants ($a_user_ids) | |
| Delete users. | |
| addDesktopItem ($a_usr_id) | |
| Add desktop item. | |
| dropDesktopItem ($a_usr_id) | |
| Drop desktop item. | |
| isNotificationEnabled ($a_usr_id) | |
| check if notification is enabled | |
| isGroupingMember ($a_usr_id, $a_field= '') | |
| Check grouping membership. | |
| getSubscribers () | |
| get all subscribers | |
| getCountSubscribers () | |
| get number of subscribers | |
| getSubscriberData ($a_usr_id) | |
| get subscriber data | |
| assignSubscribers ($a_usr_ids) | |
| Assign subscribers. | |
| assignSubscriber ($a_usr_id) | |
| Assign subscriber. | |
| autoFillSubscribers () | |
| Assign subscriber. | |
| addSubscriber ($a_usr_id) | |
| Add subscriber. | |
| updateSubscriptionTime ($a_usr_id, $a_subtime) | |
| Update subscription time. | |
| updateSubject ($a_usr_id, $a_subject) | |
| update subject | |
| deleteSubscriber ($a_usr_id) | |
| Delete subsciber. | |
| deleteSubscribers ($a_usr_ids) | |
| Delete subscibers. | |
| isSubscriber ($a_usr_id) | |
| check if is subscriber | |
Static Public Member Functions | |
| static | getInstanceByObjId ($a_obj_id) |
| Get instance by obj type. | |
| static | hasParticipantListAccess ($a_obj_id, $a_usr_id=null) |
| Check if (current) user has access to the participant list. | |
| static | _getMembershipByType ($a_usr_id, $a_type, $a_only_member_role=false) |
| get membership by type Get course or group membership | |
| static | _isParticipant ($a_ref_id, $a_usr_id) |
| Static function to check if a user is a participant of the container object. | |
| static | lookupNumberOfParticipants ($a_ref_id) |
| Lookup the number of participants (crs admins, tutors, members, grp admins, members) | |
| static | lookupNumberOfMembers ($a_ref_id) |
| Lookup number of members ilRbacReview $rbacreview <type> $ilObjDataCache. | |
| static | _isBlocked ($a_obj_id, $a_usr_id) |
| Check if user is blocked. | |
| static | _hasPassed ($a_obj_id, $a_usr_id) |
| Check if user has passed course. | |
| static | _deleteAllEntries ($a_obj_id) |
| Delete all entries Normally called for course deletion. | |
| static | _deleteUser ($a_usr_id) |
| Delete user data. | |
| static | getDefaultMemberRole ($a_ref_id) |
| static | lookupSubscribers ($a_obj_id) |
| static | _isSubscriber ($a_obj_id, $a_usr_id) |
| check if user is subscriber | |
| static | lookupSubscribersData ($a_obj_id) |
Protected Member Functions | |
| getComponent () | |
| Get component name Used for raising events. | |
| readParticipants () | |
| Read participants. | |
| readParticipantsStatus () | |
| Read status of participants (blocked, notification, passed) | |
| readSubscribers () | |
| read subscribers | |
| readSubscriberData ($a_usr_id) | |
| read subscribers | |
Protected Attributes | |
| $component = '' | |
| $obj_id = 0 | |
| $type = '' | |
| $ref_id = 0 | |
| $roles = array() | |
| $role_data = array() | |
| $participants = array() | |
| $participants_status = array() | |
| $members = array() | |
| $tutors = array() | |
| $admins = array() | |
| $subscribers = array() | |
| $ilDB | |
| $lng | |
Definition at line 20 of file class.ilParticipants.php.
| ilParticipants::__construct | ( | $a_component_name, | |
| $a_obj_id | |||
| ) |
Singleton Constructor.
public
| int | obj_id of container |
Definition at line 50 of file class.ilParticipants.php.
References $ilDB, $lng, ilObject\_getAllReferences(), ilObject\_lookupType(), readParticipants(), and readParticipantsStatus().
Here is the call graph for this function:
|
static |
Delete all entries Normally called for course deletion.
public
| int | obj_id |
Definition at line 314 of file class.ilParticipants.php.
References $ilDB, $query, and $res.
Referenced by ilObjGroup\delete(), ilObjCourse\delete(), and ilSoapCourseAdministration\updateCourse().
Here is the caller graph for this function:
|
static |
Delete user data.
public
| int | user id |
Definition at line 341 of file class.ilParticipants.php.
References $ilDB, $query, and $res.
|
static |
get membership by type Get course or group membership
public
| int | $a_usr_id | usr_id |
| string | $a_type | crs or grp |
| bool | $a_only_member_role |
Definition at line 159 of file class.ilParticipants.php.
References $ilDB, $query, $res, and $row.
Referenced by ilNewsItem\_getNewsItemsOfUser(), ilBasicSkill\getCompletionDateForTriggerRefId(), ilPortfolioPageGUI\getCoursesOfUser(), ilCourseVerificationTableGUI\getItems(), ilLPProgressTableGUI\getItems(), ilPDSelectedItemsBlockGUI\getObjectsByMembership(), ilTestEvaluationData\getParticipants(), ilWorkspaceAccessHandler\getPossibleSharedTargets(), ilPortfolioAccessHandler\getPossibleSharedTargets(), ilWorkspaceShareTableGUI\initFilter(), ilCalendarCategories\readPDCalendars(), ilWorkspaceAccessGUI\share(), and ilMailSearchGroupsGUI\showMyGroups().
Here is the caller graph for this function:
|
static |
Check if user has passed course.
public
| int | obj_id |
| int | user id |
Definition at line 293 of file class.ilParticipants.php.
References $ilDB, $query, and $res.
Referenced by ilObjCourseAccess\checkCondition().
Here is the caller graph for this function:
|
static |
Check if user is blocked.
public
| int | course id |
| int | usr_id |
Definition at line 272 of file class.ilParticipants.php.
|
static |
Static function to check if a user is a participant of the container object.
public
| int | ref_id |
| int | user id |
Reimplemented in ilGroupParticipants, and ilSessionParticipants.
Definition at line 200 of file class.ilParticipants.php.
Referenced by ilForumModeratorsGUI\detachModeratorRole(), ilObjCourseGUI\executeCommand(), ilObjCourseGUI\getTabs(), and ilObjCourseGUI\initHeaderAction().
Here is the caller graph for this function:
|
static |
check if user is subscriber
public
Definition at line 1335 of file class.ilParticipants.php.
References $ilDB, $query, $res, $row, and DB_FETCHMODE_OBJECT.
Referenced by ilObjCourseListGUI\getProperties(), and ilMembershipTest\testSubscription().
Here is the caller graph for this function:| ilParticipants::add | ( | $a_usr_id, | |
| $a_role | |||
| ) |
Add user to course.
public
| int | user id |
| int | role IL_CRS_ADMIN || IL_CRS_TUTOR || IL_CRS_MEMBER |
Definition at line 814 of file class.ilParticipants.php.
References $ilLog, addDesktopItem(), deleteSubscriber(), ilWaitingList\deleteUserEntry(), getComponent(), IL_CRS_ADMIN, IL_CRS_MEMBER, IL_CRS_TUTOR, IL_GRP_ADMIN, IL_GRP_MEMBER, and isAssigned().
Referenced by ilGroupXMLParser\__assignMembers(), and assignSubscriber().
Here is the call graph for this function:
Here is the caller graph for this function:| ilParticipants::addDesktopItem | ( | $a_usr_id | ) |
Add desktop item.
public
| int | usr_id |
Definition at line 892 of file class.ilParticipants.php.
References ilObjUser\_addDesktopItem(), and ilObjUser\_isDesktopItem().
Referenced by add().
Here is the call graph for this function:
Here is the caller graph for this function:| ilParticipants::addSubscriber | ( | $a_usr_id | ) |
Add subscriber.
public
Reimplemented in ilCourseParticipants, and ilGroupParticipants.
Definition at line 1211 of file class.ilParticipants.php.
| ilParticipants::assignSubscriber | ( | $a_usr_id | ) |
Assign subscriber.
public
Definition at line 1146 of file class.ilParticipants.php.
References $ilErr, add(), deleteSubscriber(), ilObjectFactory\getInstanceByObjId(), getInstanceByObjId(), IL_CRS_MEMBER, isAssigned(), and isSubscriber().
Referenced by assignSubscribers(), and autoFillSubscribers().
Here is the call graph for this function:
Here is the caller graph for this function:| ilParticipants::assignSubscribers | ( | $a_usr_ids | ) |
Assign subscribers.
public
Definition at line 1125 of file class.ilParticipants.php.
References assignSubscriber().
Here is the call graph for this function:| ilParticipants::autoFillSubscribers | ( | ) |
Assign subscriber.
public
Definition at line 1184 of file class.ilParticipants.php.
References assignSubscriber(), and readSubscribers().
Here is the call graph for this function:| ilParticipants::checkLastAdmin | ( | $a_usr_ids | ) |
Check if user for deletion are last admins.
public
| array | array of user ids for deletion |
Definition at line 641 of file class.ilParticipants.php.
References getAdmins().
Here is the call graph for this function:| ilParticipants::delete | ( | $a_usr_id | ) |
Drop user from all roles.
public
| int | usr_id |
Reimplemented in ilSessionParticipants.
Definition at line 692 of file class.ilParticipants.php.
References $GLOBALS, $ilDB, $query, $res, dropDesktopItem(), getComponent(), readParticipants(), and readParticipantsStatus().
Here is the call graph for this function:| ilParticipants::deleteParticipants | ( | $a_user_ids | ) |
Delete users.
public
| array | user ids |
Definition at line 876 of file class.ilParticipants.php.
| ilParticipants::deleteSubscriber | ( | $a_usr_id | ) |
Delete subsciber.
public
Definition at line 1271 of file class.ilParticipants.php.
References $ilDB, $query, and $res.
Referenced by add(), assignSubscriber(), and readSubscribers().
Here is the caller graph for this function:| ilParticipants::deleteSubscribers | ( | $a_usr_ids | ) |
Delete subscibers.
public
Definition at line 1289 of file class.ilParticipants.php.
References $ilDB, $ilErr, $query, and $res.
| ilParticipants::dropDesktopItem | ( | $a_usr_id | ) |
Drop desktop item.
public
| int | usr_id |
Definition at line 908 of file class.ilParticipants.php.
References ilObjUser\_dropDesktopItem(), and ilObjUser\_isDesktopItem().
Referenced by delete().
Here is the call graph for this function:
Here is the caller graph for this function:| ilParticipants::getAdmins | ( | ) |
Get all admins ids.
public
Definition at line 478 of file class.ilParticipants.php.
Referenced by checkLastAdmin(), getCountAdmins(), and isLastAdmin().
Here is the caller graph for this function:| ilParticipants::getAssignedRoles | ( | $a_usr_id | ) |
Get assigned roles.
public
| int | user_id |
Definition at line 585 of file class.ilParticipants.php.
|
protected |
Get component name Used for raising events.
Definition at line 103 of file class.ilParticipants.php.
References $component.
Referenced by add(), and delete().
Here is the caller graph for this function:| ilParticipants::getCountAdmins | ( | ) |
Get number of admins.
Definition at line 487 of file class.ilParticipants.php.
References getAdmins().
Here is the call graph for this function:| ilParticipants::getCountMembers | ( | ) |
Get number of members (not participants)
public
Definition at line 431 of file class.ilParticipants.php.
| ilParticipants::getCountParticipants | ( | ) |
Get number of participants.
public
Definition at line 442 of file class.ilParticipants.php.
| ilParticipants::getCountSubscribers | ( | ) |
get number of subscribers
public
Definition at line 1103 of file class.ilParticipants.php.
References getSubscribers().
Here is the call graph for this function:
|
static |
Definition at line 355 of file class.ilParticipants.php.
References $ilCtrl, $obj_id, $roles, $type, ilObject\_lookupObjId(), ilObject\_lookupTitle(), and ilObject\_lookupType().
Referenced by ilStartUpGUI\_checkGoto(), ilCourseRegistrationGUI\add(), and ilRbacSystem\initMemberView().
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Get instance by obj type.
| int | $a_obj_id |
| InvalidArgumentException |
Definition at line 75 of file class.ilParticipants.php.
References $GLOBALS, $type, ilGroupParticipants\_getInstanceByObjId(), ilSessionParticipants\_getInstanceByObjId(), ilCourseParticipants\_getInstanceByObjId(), and ilObject\_lookupType().
Referenced by assignSubscriber(), ilObjSessionGUI\assignSubscribersObject(), ilWorkspaceAccessHandler\findSharedObjects(), ilPortfolioAccessHandler\findSharedObjects(), ilECSAppEventListener\handleMembership(), hasParticipantListAccess(), isGroupingMember(), ilRepositorySearchGUI\listUsers(), ilObjSessionGUI\membersObject(), ilRepositoryObjectResultTableGUI\parseObjectIds(), ilObjSessionGUI\refuseSubscribersObject(), ilObjSessionGUI\registerObject(), and ilObjSessionGUI\showJoinRequestButton().
Here is the call graph for this function:
Here is the caller graph for this function:| ilParticipants::getMembers | ( | ) |
Get all members ids (admins and tutors are not members) Use get participants to fetch all.
public
Definition at line 468 of file class.ilParticipants.php.
Referenced by ilSessionParticipants\readParticipantsStatus().
Here is the caller graph for this function:| ilParticipants::getNotificationRecipients | ( | ) |
Get admin, tutor which have notification enabled.
public
Definition at line 407 of file class.ilParticipants.php.
References $ilDB, $query, $res, $row, DB_FETCHMODE_OBJECT, isAdmin(), and isTutor().
Referenced by ilGroupParticipants\sendNotification(), ilCourseParticipants\sendNotificationToAdmins(), ilCourseParticipants\sendSubscriptionRequestToAdmins(), and ilCourseParticipants\sendUnsubscribeNotificationToAdmins().
Here is the call graph for this function:
Here is the caller graph for this function:| ilParticipants::getObjId | ( | ) |
get current obj_id
Definition at line 387 of file class.ilParticipants.php.
References $obj_id.
Referenced by ilGroupParticipants\addSubscriber(), and ilCourseParticipants\addSubscriber().
Here is the caller graph for this function:| ilParticipants::getParticipants | ( | ) |
Get all participants ids.
public
Definition at line 456 of file class.ilParticipants.php.
Referenced by isGroupingMember().
Here is the caller graph for this function:| ilParticipants::getRoles | ( | ) |
Get course roles.
public
Definition at line 573 of file class.ilParticipants.php.
Referenced by updateRoleAssignments().
Here is the caller graph for this function:| ilParticipants::getSubscriberData | ( | $a_usr_id | ) |
get subscriber data
public
Definition at line 1113 of file class.ilParticipants.php.
References readSubscriberData().
Here is the call graph for this function:| ilParticipants::getSubscribers | ( | ) |
get all subscribers
public
Definition at line 1090 of file class.ilParticipants.php.
References $subscribers, and readSubscribers().
Referenced by getCountSubscribers().
Here is the call graph for this function:
Here is the caller graph for this function:| ilParticipants::getTutors | ( | ) |
Get all tutors ids.
public
Definition at line 499 of file class.ilParticipants.php.
| ilParticipants::getType | ( | ) |
Get object type.
Definition at line 396 of file class.ilParticipants.php.
References $type.
|
static |
Check if (current) user has access to the participant list.
| type | $a_obj | |
| type | $a_usr_id |
Definition at line 115 of file class.ilParticipants.php.
References $GLOBALS, $ref_id, ilObject\_getAllReferences(), getInstanceByObjId(), and ilObjCourse\lookupShowMembersEnabled().
Referenced by ilRepositorySearchGUI\listUsers(), ilRepositoryObjectResultTableGUI\parseObjectIds(), and ilMailSearchGUI\showResults().
Here is the call graph for this function:
Here is the caller graph for this function:| ilParticipants::hasPassed | ( | $a_usr_id | ) |
Check if user has passed course.
public
| int | user_id |
Definition at line 676 of file class.ilParticipants.php.
Referenced by ilCourseParticipants\__buildStatusBody().
Here is the caller graph for this function:| ilParticipants::isAdmin | ( | $a_usr_id | ) |
is user admin
public
| int | usr_id |
Definition at line 511 of file class.ilParticipants.php.
Referenced by ilCourseParticipants\__buildStatusBody(), and getNotificationRecipients().
Here is the caller graph for this function:| ilParticipants::isAssigned | ( | $a_usr_id | ) |
check if user is assigned
public
Definition at line 550 of file class.ilParticipants.php.
Referenced by add(), and assignSubscriber().
Here is the caller graph for this function:| ilParticipants::isBlocked | ( | $a_usr_id | ) |
Check if user is blocked.
public
| int | user_id |
Definition at line 660 of file class.ilParticipants.php.
Referenced by ilCourseParticipants\__buildStatusBody().
Here is the caller graph for this function:| ilParticipants::isGroupingMember | ( | $a_usr_id, | |
$a_field = '' |
|||
| ) |
Check grouping membership.
public
Definition at line 1027 of file class.ilParticipants.php.
References $ilDB, $query, $res, getInstanceByObjId(), and getParticipants().
Here is the call graph for this function:| ilParticipants::isLastAdmin | ( | $a_usr_id | ) |
Check if user is last admin.
| int | $a_usr_id |
Definition at line 560 of file class.ilParticipants.php.
References getAdmins().
Here is the call graph for this function:| ilParticipants::isMember | ( | $a_usr_id | ) |
is user member
public
| int | usr_id |
Definition at line 535 of file class.ilParticipants.php.
Referenced by ilCourseParticipants\__buildStatusBody().
Here is the caller graph for this function:| ilParticipants::isNotificationEnabled | ( | $a_usr_id | ) |
check if notification is enabled
public
Definition at line 927 of file class.ilParticipants.php.
Referenced by ilCourseParticipants\__buildStatusBody().
Here is the caller graph for this function:| ilParticipants::isSubscriber | ( | $a_usr_id | ) |
check if is subscriber
public
Definition at line 1313 of file class.ilParticipants.php.
References $ilDB, $query, $res, $row, and DB_FETCHMODE_OBJECT.
Referenced by assignSubscriber().
Here is the caller graph for this function:| ilParticipants::isTutor | ( | $a_usr_id | ) |
is user tutor
public
| int | usr_id |
Definition at line 523 of file class.ilParticipants.php.
Referenced by ilCourseParticipants\__buildStatusBody(), and getNotificationRecipients().
Here is the caller graph for this function:
|
static |
Lookup number of members ilRbacReview $rbacreview <type> $ilObjDataCache.
| <type> | $a_ref_id |
Definition at line 231 of file class.ilParticipants.php.
Referenced by ilObjCourseGUI\infoScreen().
Here is the caller graph for this function:
|
static |
Lookup the number of participants (crs admins, tutors, members, grp admins, members)
ilRbacReview $rbacreview
| int | $a_ref_id |
Definition at line 216 of file class.ilParticipants.php.
|
static |
Definition at line 1068 of file class.ilParticipants.php.
References $ilDB, $query, $res, $row, $subscribers, and DB_FETCHMODE_OBJECT.
Referenced by ilObjCourseGUI\membersObject().
Here is the caller graph for this function:
|
static |
Definition at line 1402 of file class.ilParticipants.php.
References $ilDB, $query, $res, $row, and DB_FETCHMODE_OBJECT.
Referenced by ilSubscriberTableGUI\readSubscriberData().
Here is the caller graph for this function:
|
protected |
Read participants.
private
Reimplemented in ilSessionParticipants.
Definition at line 944 of file class.ilParticipants.php.
References $ilLog, $participants, IL_CRS_ADMIN, IL_CRS_MEMBER, IL_CRS_TUTOR, IL_GRP_ADMIN, and IL_GRP_MEMBER.
Referenced by __construct(), delete(), and updateRoleAssignments().
Here is the caller graph for this function:
|
protected |
Read status of participants (blocked, notification, passed)
private
Reimplemented in ilSessionParticipants.
Definition at line 1004 of file class.ilParticipants.php.
References $ilDB, $query, $res, $row, and DB_FETCHMODE_OBJECT.
Referenced by __construct(), delete(), and updateRoleAssignments().
Here is the caller graph for this function:
|
protected |
read subscribers
protected
Definition at line 1384 of file class.ilParticipants.php.
References $ilDB, $query, $res, $row, DB_FETCHMODE_OBJECT, and ilDB\query().
Referenced by getSubscriberData().
Here is the call graph for this function:
Here is the caller graph for this function:
|
protected |
read subscribers
protected
Definition at line 1356 of file class.ilParticipants.php.
References $ilDB, $query, $res, $row, DB_FETCHMODE_OBJECT, deleteSubscriber(), ilObjectFactory\getInstanceByObjId(), and ilDB\query().
Referenced by autoFillSubscribers(), and getSubscribers().
Here is the call graph for this function:
Here is the caller graph for this function:| ilParticipants::updateBlocked | ( | $a_usr_id, | |
| $a_blocked | |||
| ) |
Update blocked status.
public
| int | usr_id |
| bool | blocked |
Definition at line 729 of file class.ilParticipants.php.
References $ilDB, $query, and $res.
| ilParticipants::updateNotification | ( | $a_usr_id, | |
| $a_notification | |||
| ) |
Update notification status.
public
| int | usr_id |
| bool | passed |
Definition at line 770 of file class.ilParticipants.php.
References $ilDB, $query, and $res.
| ilParticipants::updateRoleAssignments | ( | $a_usr_id, | |
| $a_roles | |||
| ) |
Update role assignments.
public
| int | usr_id |
| array | array of new roles |
Definition at line 607 of file class.ilParticipants.php.
References $roles, getRoles(), readParticipants(), and readParticipantsStatus().
Here is the call graph for this function:| ilParticipants::updateSubject | ( | $a_usr_id, | |
| $a_subject | |||
| ) |
| ilParticipants::updateSubscriptionTime | ( | $a_usr_id, | |
| $a_subtime | |||
| ) |
|
protected |
Definition at line 35 of file class.ilParticipants.php.
|
protected |
Definition at line 22 of file class.ilParticipants.php.
Referenced by getComponent().
|
protected |
Definition at line 39 of file class.ilParticipants.php.
Referenced by ilCourseParticipants\__buildStatusBody(), __construct(), _deleteAllEntries(), _deleteUser(), _getMembershipByType(), _hasPassed(), _isBlocked(), ilGroupParticipants\_isParticipant(), _isParticipant(), _isSubscriber(), ilCourseParticipants\_updatePassed(), addSubscriber(), delete(), deleteSubscriber(), deleteSubscribers(), ilCourseParticipants\getDateTimeOfPassed(), getNotificationRecipients(), ilCourseParticipants\getPassedInfo(), ilCourseParticipants\getPassedUsersForObjects(), isGroupingMember(), isSubscriber(), lookupSubscribers(), lookupSubscribersData(), readParticipantsStatus(), readSubscriberData(), readSubscribers(), ilCourseParticipants\sendNotificationToAdmins(), ilCourseParticipants\sendSubscriptionRequestToAdmins(), ilCourseParticipants\sendUnsubscribeNotificationToAdmins(), updateBlocked(), updateNotification(), updateSubject(), and updateSubscriptionTime().
|
protected |
Definition at line 40 of file class.ilParticipants.php.
Referenced by __construct().
|
protected |
Definition at line 33 of file class.ilParticipants.php.
|
protected |
Definition at line 24 of file class.ilParticipants.php.
Referenced by ilSessionParticipants\_isParticipant(), getDefaultMemberRole(), and getObjId().
|
protected |
Definition at line 31 of file class.ilParticipants.php.
Referenced by readParticipants().
|
protected |
Definition at line 32 of file class.ilParticipants.php.
|
protected |
Definition at line 26 of file class.ilParticipants.php.
Referenced by hasParticipantListAccess().
|
protected |
Definition at line 29 of file class.ilParticipants.php.
|
protected |
Definition at line 28 of file class.ilParticipants.php.
Referenced by getDefaultMemberRole(), ilGroupParticipants\getMemberRoles(), ilCourseParticipants\getMemberRoles(), and updateRoleAssignments().
|
protected |
Definition at line 37 of file class.ilParticipants.php.
Referenced by getSubscribers(), and lookupSubscribers().
|
protected |
Definition at line 34 of file class.ilParticipants.php.
|
protected |
Definition at line 25 of file class.ilParticipants.php.
Referenced by getDefaultMemberRole(), getInstanceByObjId(), and getType().