ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTermsOfServiceTableDataProviderFactory.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 /* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
9 {
10  const CONTEXT_ACCEPTANCE_HISTORY = 'acceptance_history';
11  const CONTEXT_DOCUMENTS = 'documents';
12 
14  protected $db;
15 
23  {
24  switch ($context) {
25  case self::CONTEXT_ACCEPTANCE_HISTORY:
26  $this->validateConfiguration(['db']);
28 
29  case self::CONTEXT_DOCUMENTS:
31 
32  default:
33  throw new InvalidArgumentException('Provider not supported');
34  }
35  }
36 
41  protected function validateConfiguration(array $mandatoryMemberVariables) : void
42  {
43  foreach ($mandatoryMemberVariables as $member) {
44  if (null === $this->{$member}) {
45  $exception = $this->getExceptionByMember($member);
46  throw $exception;
47  }
48  }
49  }
50 
56  protected function getExceptionByMember(string $member)
57  {
58  switch ($member) {
59  case 'db':
61  'Incomplete factory configuration. Please inject a database adapter.'
62  );
63 
64  default:
65  throw new InvalidArgumentException("Exception for member {$member} not supported");
66  }
67  }
68 
73  {
74  $this->db = $db;
75  }
76 
80  public function getDatabaseAdapter() : ?ilDBInterface
81  {
82  return $this->db;
83  }
84 }
$context
Definition: webdav.php:26
Interface ilTermsOfServiceTableDataProvider.
Interface ilDBInterface.