Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 13 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
| common_ext_ExtensionModel | |
0.00% |
0 / 13 |
|
0.00% |
0 / 2 |
30 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| addModelFiles | |
0.00% |
0 / 11 |
|
0.00% |
0 / 1 |
20 | |||
| 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 | use oat\generis\model\kernel\persistence\file\FileIterator; |
| 23 | |
| 24 | /** |
| 25 | * Model of the extension |
| 26 | * |
| 27 | * @author Joel Bout |
| 28 | * @package generis |
| 29 | * @license GNU General Public (GPL) Version 2 http://www.opensource.org/licenses/gpl-2.0.php |
| 30 | */ |
| 31 | class common_ext_ExtensionModel extends AppendIterator |
| 32 | { |
| 33 | public function __construct(common_ext_Extension $extension) |
| 34 | { |
| 35 | parent::__construct(); |
| 36 | $this->addModelFiles($extension); |
| 37 | } |
| 38 | |
| 39 | public function addModelFiles($extension) |
| 40 | { |
| 41 | foreach ($extension->getManifest()->getInstallModelFiles() as $rdfpath) { |
| 42 | if (!file_exists($rdfpath)) { |
| 43 | throw new common_ext_InstallationException( |
| 44 | "Unable to load ontology in '${rdfpath}' because the file does not exist." |
| 45 | ); |
| 46 | } |
| 47 | |
| 48 | if (!is_readable($rdfpath)) { |
| 49 | throw new common_ext_InstallationException( |
| 50 | "Unable to load ontology in '${rdfpath}' because the file is not readable." |
| 51 | ); |
| 52 | } |
| 53 | |
| 54 | $iterator = new FileIterator($rdfpath); |
| 55 | $this->append($iterator->getIterator()); |
| 56 | } |
| 57 | } |
| 58 | } |