Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 8 |
|
0.00% |
0 / 5 |
CRAP | |
0.00% |
0 / 1 |
OperatedByService | |
0.00% |
0 / 8 |
|
0.00% |
0 / 5 |
56 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
getName | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
6 | |||
setName | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getEmail | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
6 | |||
setEmail | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2017 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | namespace oat\tao\model; |
22 | |
23 | use oat\oatbox\service\ConfigurableService; |
24 | |
25 | /** |
26 | * TAO OperatedBy Service |
27 | * |
28 | * This service aims at retrieving/persisting information about |
29 | * the organization operating the TAO Platform. |
30 | */ |
31 | class OperatedByService extends ConfigurableService |
32 | { |
33 | public const SERVICE_ID = 'tao/operatedby'; |
34 | |
35 | /** |
36 | * TAO OperatedBy Service Constructor |
37 | * |
38 | * Creates a new OperatedByService object. |
39 | * |
40 | * @param array $options An associative array where keys are option names and values are option values. |
41 | */ |
42 | public function __construct($options = []) |
43 | { |
44 | parent::__construct($options); |
45 | } |
46 | |
47 | /** |
48 | * Get Organization Name |
49 | * |
50 | * Get the name of the organization operating the TAO Platform. |
51 | * |
52 | * @return string |
53 | */ |
54 | public function getName() |
55 | { |
56 | $name = $this->getOption('operatedByName'); |
57 | return (empty($name) ? '' : $name); |
58 | } |
59 | |
60 | /** |
61 | * Set Organization Name |
62 | * |
63 | * Set the name of the organization operating the TAO Platform. |
64 | * |
65 | * @param string $name |
66 | */ |
67 | public function setName($name) |
68 | { |
69 | $this->setOption('operatedByName', $name); |
70 | } |
71 | |
72 | /** |
73 | * Get Organization Email |
74 | * |
75 | * Get the email address of the organization operating the TAO |
76 | * Platform. |
77 | * |
78 | * @return string |
79 | */ |
80 | public function getEmail() |
81 | { |
82 | $email = $this->getOption('operatedByEmail'); |
83 | return (empty($email) ? '' : $email); |
84 | } |
85 | |
86 | /** |
87 | * Set the Organization Email |
88 | * |
89 | * Set the email address of the organization operating the TAO |
90 | * Platform. |
91 | * |
92 | * @param string $email |
93 | */ |
94 | public function setEmail($email) |
95 | { |
96 | $this->setOption('operatedByEmail', $email); |
97 | } |
98 | } |