Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 6
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
PicLoader
0.00% covered (danger)
0.00%
0 / 6
0.00% covered (danger)
0.00%
0 / 2
20
0.00% covered (danger)
0.00%
0 / 1
 load
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
6
 getPicRegistry
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
6
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) 2016 (original work) Open Assessment Technologies SA;
19 */
20
21namespace oat\qtiItemPic\controller;
22
23use oat\qtiItemPic\model\PicModel;
24use oat\taoQtiItem\model\portableElement\exception\PortableElementException;
25use oat\taoQtiItem\model\portableElement\storage\PortableElementRegistry;
26use tao_actions_CommonModule;
27
28class PicLoader extends tao_actions_CommonModule
29{
30    /** @var PortableElementRegistry */
31    protected $registry;
32
33    /**
34     * Load latest PCI runtimes
35     */
36    public function load()
37    {
38        try {
39            $this->returnJson($this->getPicRegistry()->getLatestRuntimes());
40        } catch (PortableElementException $e) {
41            $this->returnJson($e->getMessage(), 500);
42        }
43    }
44
45    /**
46     * @return PortableElementRegistry
47     */
48    protected function getPicRegistry()
49    {
50        if (! $this->registry) {
51            $this->registry = (new PicModel())->getRegistry();
52        }
53
54        return $this->registry;
55    }
56}