Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
Config
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 5
42
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 setProperty
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getProperty
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
6
 getProperties
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 addHook
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 toArray
n/a
0 / 0
n/a
0 / 0
0
 init
n/a
0 / 0
n/a
0 / 0
0
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) 2014 (original work) Open Assessment Technologies SA;
19 *
20 */
21
22namespace oat\taoQtiItem\model;
23
24/**
25 * Interface defining required method for a controller's config
26 *
27 * @package taoQtiItem
28 */
29abstract class Config
30{
31    protected $properties = [];
32    protected $uiHooks = [];
33
34    public function __construct()
35    {
36    }
37
38    public function setProperty($key, $value)
39    {
40        $this->properties[$key] = $value;
41    }
42
43    public function getProperty($key)
44    {
45        if (isset($this->properties[$key])) {
46            return $this->properties[$key];
47        } else {
48            return null;
49        }
50    }
51
52    public function getProperties()
53    {
54        return $this->properties;
55    }
56
57    public function addHook($hookFile)
58    {
59        $this->uiHooks[] = $hookFile;
60    }
61
62    abstract public function toArray();
63
64    abstract public function init();
65}