Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
tao_models_classes_ServiceFactory | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
get | |
0.00% |
0 / 3 |
|
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) 2002-2008 (original work) Public Research Centre Henri Tudor & University of Luxembourg |
19 | * (under the project TAO & TAO2); |
20 | * 2008-2010 (update and modification) Deutsche Institut für Internationale Pädagogische Forschung |
21 | * (under the project TAO-TRANSFER); |
22 | * 2009-2012 (update and modification) Public Research Centre Henri Tudor |
23 | * (under the project TAO-SUSTAIN & TAO-DEV); |
24 | * |
25 | */ |
26 | |
27 | /** |
28 | * The ServiceFactory enable you to get Service instances dynamically. |
29 | * Use the ServiceFactory::get(serviceName) to retrieve a single instance of a |
30 | * implementation. |
31 | * |
32 | * @access public |
33 | * @author Joel Bout, <joel.bout@tudor.lu> |
34 | * @package tao |
35 | |
36 | * @version 0.1 |
37 | */ |
38 | class tao_models_classes_ServiceFactory |
39 | { |
40 | // --- ASSOCIATIONS --- |
41 | |
42 | |
43 | // --- ATTRIBUTES --- |
44 | |
45 | // --- OPERATIONS --- |
46 | |
47 | /** |
48 | * Entry point to get an instance of a service |
49 | * by it's short name. |
50 | * |
51 | * @access public |
52 | * @author Joel Bout, <joel.bout@tudor.lu> |
53 | * @deprecated |
54 | * @param string $serviceName The name of the service you want to retrieve. You can set the complete class name, |
55 | * the interface name or only the ressource name managed by the service. |
56 | * @return tao_models_classes_GenerisService |
57 | */ |
58 | public static function get($serviceName) |
59 | { |
60 | $returnValue = null; |
61 | |
62 | |
63 | $returnValue = tao_models_classes_Service::getServiceByName($serviceName); |
64 | |
65 | |
66 | return $returnValue; |
67 | } |
68 | } |