Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 13 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
InstallHelper | |
0.00% |
0 / 13 |
|
0.00% |
0 / 2 |
12 | |
0.00% |
0 / 1 |
installRecursively | |
0.00% |
0 / 10 |
|
0.00% |
0 / 1 |
6 | |||
getInstaller | |
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) 2015 (original work) Open Assessment Technologies SA; |
19 | * |
20 | * |
21 | */ |
22 | |
23 | namespace oat\tao\helpers; |
24 | |
25 | use common_Logger; |
26 | |
27 | /** |
28 | * Utility class for instalation. |
29 | * |
30 | * @package tao |
31 | */ |
32 | class InstallHelper extends \helpers_InstallHelper |
33 | { |
34 | /** |
35 | * Override of original install helper to throw install exception |
36 | * on errors |
37 | * |
38 | * @param array $extensionIDs |
39 | * @param array $installData |
40 | * @throws \tao_install_utils_Exception |
41 | * @return multitype:string |
42 | */ |
43 | public static function installRecursively($extensionIDs, $installData = []) |
44 | { |
45 | try { |
46 | return parent::installRecursively($extensionIDs, $installData); |
47 | } catch (\common_ext_ExtensionException $e) { |
48 | static::log( |
49 | 'w', |
50 | 'Exception(' . $e->getMessage() . ') during install for extension "' . $e->getExtensionId() . '"' |
51 | ); |
52 | throw new \tao_install_utils_Exception( |
53 | "An error occured during the installation of extension '" . $e->getExtensionId() . "'." |
54 | ); |
55 | } |
56 | } |
57 | |
58 | protected static function getInstaller($extension, $importLocalData) |
59 | { |
60 | $instance = new \tao_install_ExtensionInstaller($extension, $importLocalData); |
61 | $instance->initContainer(static::$container); |
62 | |
63 | return $instance; |
64 | } |
65 | } |