Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
ExecutionClientContainer
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 2
6
0.00% covered (danger)
0.00%
0 / 1
 getHeaderTemplate
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getBodyTemplate
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
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) 2016 (original work) Open Assessment Technologies SA;
19 */
20
21namespace oat\taoDelivery\model\container\execution;
22
23use oat\tao\helpers\Template;
24
25/**
26 * Class DeliveryClientContainer
27 * @package oat\taoDelivery\helper
28 */
29class ExecutionClientContainer extends AbstractExecutionContainer
30{
31    /**
32     * @inheritDoc
33     */
34    protected $loaderTemplate = 'DeliveryServer/container/client/loader.tpl';
35
36    /**
37     * @inheritDoc
38     */
39    protected $contentTemplate = 'DeliveryServer/container/client/template.tpl';
40
41    /**
42     * The name of the extension containing the loader template
43     * @var string
44     */
45    protected $templateExtension = 'taoDelivery';
46
47    /**
48     * {@inheritDoc}
49     * @see \oat\taoDelivery\model\container\execution\AbstractExecutionContainer::getHeaderTemplate()
50     */
51    protected function getHeaderTemplate()
52    {
53        return Template::getTemplate($this->loaderTemplate, $this->templateExtension);
54    }
55
56    /**
57     * {@inheritDoc}
58     * @see \oat\taoDelivery\model\container\execution\AbstractExecutionContainer::getBodyTemplate()
59     */
60    protected function getBodyTemplate()
61    {
62        return Template::getTemplate($this->contentTemplate, $this->templateExtension);
63    }
64}