1 | <?php |
||
38 | abstract class AbstractExtensionConfig implements ExtensionConfigInterface |
||
39 | { |
||
40 | /** |
||
41 | * @see Typo3Mode::isBackend() |
||
42 | */ |
||
43 | protected static function isBackend() |
||
47 | |||
48 | /** |
||
49 | * @see Typo3Mode::isFrontend() |
||
50 | */ |
||
51 | protected static function isFrontend() |
||
55 | |||
56 | /** |
||
57 | * @see Typo3Version::isVersion() |
||
58 | */ |
||
59 | protected static function isVersion($branchNumberStr) |
||
63 | |||
64 | /** |
||
65 | * @see Typo3Version::isCompatVersion() |
||
66 | */ |
||
67 | protected static function isCompatVersion($branchNumberStr) |
||
71 | |||
72 | /** |
||
73 | * Called from ext_localconf.php, to be implemented in derrived classes. |
||
74 | * |
||
75 | * @return void |
||
76 | * @api |
||
77 | */ |
||
78 | abstract public static function localconf($extKey); |
||
79 | |||
80 | /** |
||
81 | * Called from ext_tables.php, to be implemented in derrived classes. |
||
82 | * |
||
83 | * @return void |
||
84 | * @api |
||
85 | */ |
||
86 | abstract public static function tables($extKey); |
||
87 | } |
||
|
|||
88 |
This check marks files that end in a newline character, i.e. an empy line.