Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 4 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 1 |
common_ext_AbstractExtension | |
0.00% |
0 / 4 |
|
0.00% |
0 / 4 |
20 | |
0.00% |
0 / 1 |
getAuthor | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getName | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getRequiredExtensions | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getVersion | |
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) 2008-2010 (original work) Deutsche Institut für Internationale Pädagogische Forschung |
19 | * (under the project TAO-TRANSFER); |
20 | * 2009-2012 (update and modification) Public Research Centre Henri Tudor |
21 | * (under the project TAO-SUSTAIN & TAO-DEV); |
22 | * |
23 | */ |
24 | |
25 | /** |
26 | * Short description of class common_ext_AbstractExtension |
27 | * |
28 | * @abstract |
29 | * @access public |
30 | * @author CRP Henri Tudor - TAO Team - {@link http://www.tao.lu} |
31 | * @package generis |
32 | |
33 | */ |
34 | abstract class common_ext_AbstractExtension |
35 | { |
36 | // --- ASSOCIATIONS --- |
37 | |
38 | |
39 | // --- ATTRIBUTES --- |
40 | |
41 | // --- OPERATIONS --- |
42 | |
43 | /** |
44 | * Short description of method getAuthor |
45 | * |
46 | * @access public |
47 | * @author CRP Henri Tudor - TAO Team - {@link http://www.tao.lu} |
48 | * @return mixed |
49 | */ |
50 | public function getAuthor() |
51 | { |
52 | } |
53 | |
54 | /** |
55 | * Short description of method getName |
56 | * |
57 | * @access public |
58 | * @author CRP Henri Tudor - TAO Team - {@link http://www.tao.lu} |
59 | * @return mixed |
60 | */ |
61 | public function getName() |
62 | { |
63 | } |
64 | |
65 | /** |
66 | * Short description of method getRequiredExtensions |
67 | * |
68 | * @access public |
69 | * @author CRP Henri Tudor - TAO Team - {@link http://www.tao.lu} |
70 | * @return mixed |
71 | */ |
72 | public function getRequiredExtensions() |
73 | { |
74 | } |
75 | |
76 | /** |
77 | * Short description of method getVersion |
78 | * |
79 | * @access public |
80 | * @author CRP Henri Tudor - TAO Team - {@link http://www.tao.lu} |
81 | * @return mixed |
82 | */ |
83 | public function getVersion() |
84 | { |
85 | } |
86 | } |