ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAwarenessUserProviderContactRequests.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 /* Copyright (c) 1998-2015 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
10 {
12  protected $user;
13 
17  public function __construct()
18  {
19  global $DIC;
20 
22 
23  $this->user = $DIC['ilUser'];
24  }
25 
29  public function getProviderId()
30  {
31  return 'contact_approved';
32  }
33 
37  public function getTitle()
38  {
39  $this->lng->loadLanguageModule('contact');
40  return $this->lng->txt('contact_awrn_req_contacts');
41  }
42 
46  public function getInfo()
47  {
48  $this->lng->loadLanguageModule('contact');
49  return $this->lng->txt('contact_awrn_req_contacts_info');
50  }
51 
55  public function getInitialUserSet()
56  {
57  if ($this->user->isAnonymous()) {
58  return [];
59  }
60 
61  if (!ilBuddySystem::getInstance()->isEnabled()) {
62  return [];
63  }
64 
65  return ilBuddyList::getInstanceByGlobalUser()->getRequestRelationsForOwner()->getKeys();
66  }
67 
71  public function isHighlighted()
72  {
73  return true;
74  }
75 }
__construct()
ilAwarenessUserProviderApprovedContacts constructor.
static getInstanceByGlobalUser()
A class that provides a collection of users for the awareness tool.
user()
Definition: user.php:4
global $DIC
Definition: goto.php:24
__construct(Container $dic, ilPlugin $plugin)