Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
AbstractModuleRegistry | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
12 | |
0.00% |
0 / 1 |
register | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
12 |
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) 2016-2017 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | namespace oat\tao\model\modules; |
22 | |
23 | use oat\oatbox\AbstractRegistry; |
24 | |
25 | /** |
26 | * Store the <b>available</b> plugins modules, even if not activated, plugins have to be registered. |
27 | * |
28 | * @author Bertrand Chevrier <bertrand@taotesting.com> |
29 | * @author Jean-Sébastien Conan <jean-sebastien@taotesting.com> |
30 | */ |
31 | abstract class AbstractModuleRegistry extends AbstractRegistry |
32 | { |
33 | /** |
34 | * Register a plugin |
35 | * @param DynamicModule $module the plugin to register |
36 | * @return boolean true if registered |
37 | */ |
38 | public function register(DynamicModule $module) |
39 | { |
40 | if (!is_null($module) && ! empty($module->getModule())) { |
41 | self::getRegistry()->set($module->getModule(), $module->toArray()); |
42 | |
43 | return true; |
44 | } |
45 | return false; |
46 | } |
47 | } |