Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
AbstractExecutionContainer
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 4
20
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
 setData
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getContainerHeader
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 getContainerBody
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 getHeaderTemplate
n/a
0 / 0
n/a
0 / 0
0
 getBodyTemplate
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) 2016 (original work) Open Assessment Technologies SA ;
19 */
20
21namespace oat\taoDelivery\model\container\execution;
22
23use oat\taoDelivery\model\execution\DeliveryExecution;
24use oat\taoDelivery\model\container\ExecutionContainer;
25
26/**
27 * @author Jean-Sébastien Conan <jean-sebastien.conan@vesperiagroup.com>
28 * Abstract container to simplify the development of
29 * simple containers
30 */
31abstract class AbstractExecutionContainer implements ExecutionContainer
32{
33    /**
34     * @var array
35     */
36    private $data = [];
37
38    /**
39     * @var DeliveryExecution
40     */
41    private $deliveryExecution;
42
43    /**
44     * DeliveryContainer constructor.
45     * @param DeliveryExecution $deliveryExecution
46     */
47    public function __construct(DeliveryExecution $deliveryExecution)
48    {
49        $this->deliveryExecution = $deliveryExecution;
50    }
51
52    /**
53     * {@inheritDoc}
54     * @see \oat\taoDelivery\model\container\ExecutionContainer::setData()
55     */
56    public function setData($key, $value)
57    {
58        $this->data[$key] = $value;
59    }
60
61    /**
62     * @return \Renderer
63     */
64    public function getContainerHeader()
65    {
66        $renderer = new \Renderer($this->getHeaderTemplate());
67        $renderer->setMultipleData($this->data);
68        return $renderer;
69    }
70
71    /**
72     * @return \Renderer
73    */
74    public function getContainerBody()
75    {
76        $renderer = new \Renderer($this->getBodyTemplate());
77        $renderer->setMultipleData($this->data);
78        return $renderer;
79    }
80
81    /**
82     * Returns the path to the header template
83     * @return string
84     */
85    abstract protected function getHeaderTemplate();
86
87    /**
88     * Returns the path to the body template
89     * @return string
90     */
91    abstract protected function getBodyTemplate();
92}