ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilMailMemberCourseRoles.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2015 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once 'Services/Contact/classes/class.ilAbstractMailMemberRoles.php';
5 
11 {
15  protected $lng;
16 
20  protected $rbacreview;
21 
25  public function __construct()
26  {
27  global $DIC;
28 
29  $this->lng = $DIC['lng'];
30  $this->rbacreview = $DIC['rbacreview'];
31  }
32 
36  public function getRadioOptionTitle()
37  {
38  return $this->lng->txt('mail_crs_roles');
39  }
40 
45  public function getMailRoles($ref_id)
46  {
47  $role_ids = $this->rbacreview->getLocalRoles($ref_id);
48 
49  // Sort by relevance
50  $sorted_role_ids = array();
51  $counter = 3;
52 
53  foreach ($role_ids as $role_id) {
54  $role_title = ilObject::_lookupTitle($role_id);
55  $mailbox = $this->getMailboxRoleAddress($role_id);
56 
57  switch (substr($role_title, 0, 8)) {
58  case 'il_crs_a':
59  $sorted_role_ids[2]['role_id'] = $role_id;
60  $sorted_role_ids[2]['mailbox'] = $mailbox;
61  $sorted_role_ids[2]['form_option_title'] = $this->lng->txt('send_mail_admins');
62  break;
63 
64  case 'il_crs_t':
65  $sorted_role_ids[1]['role_id'] = $role_id;
66  $sorted_role_ids[1]['mailbox'] = $mailbox;
67  $sorted_role_ids[1]['form_option_title'] = $this->lng->txt('send_mail_tutors');
68  break;
69 
70  case 'il_crs_m':
71  $sorted_role_ids[0]['role_id'] = $role_id;
72  $sorted_role_ids[0]['mailbox'] = $mailbox;
73  $sorted_role_ids[0]['form_option_title'] = $this->lng->txt('send_mail_members');
74  break;
75 
76  default:
77  $sorted_role_ids[$counter]['role_id'] = $role_id;
78  $sorted_role_ids[$counter]['mailbox'] = $mailbox;
79  $sorted_role_ids[$counter]['form_option_title'] = $role_title;
80 
81  $counter++;
82  break;
83  }
84  }
85  ksort($sorted_role_ids, SORT_NUMERIC);
86 
87  return $sorted_role_ids;
88  }
89 }
global $DIC
Definition: saml.php:7
__construct()
ilMailMemberCourseRoles constructor.
static _lookupTitle($a_id)
lookup object title
Class ilMailMemberCourseRoles.
Class ilAbstractMailMemberRoles.