Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 11
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
SimpleConfigDriver
0.00% covered (danger)
0.00%
0 / 11
0.00% covered (danger)
0.00%
0 / 3
20
0.00% covered (danger)
0.00%
0 / 1
 getContent
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getDefaultHeader
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 getPath
0.00% covered (danger)
0.00%
0 / 5
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) 2015 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 *
20 */
21
22namespace oat\oatbox\service;
23
24use common_persistence_PhpFileDriver;
25use common_Utils;
26use oat\oatbox\config\ConfigurationDriver;
27
28/**
29 * A simplified config driver
30 */
31class SimpleConfigDriver extends common_persistence_PhpFileDriver implements ConfigurationDriver
32{
33    /**
34     * Override the function to allow an additional header
35     *
36     * (non-PHPdoc)
37     * @see common_persistence_PhpFileDriver::getContent()
38     */
39    protected function getContent($key, $value)
40    {
41        return $this->getDefaultHeader($key) . PHP_EOL . "return " . common_Utils::toHumanReadablePhpString($value)
42            . ";" . PHP_EOL;
43    }
44
45    /**
46     * Generates a default header
47     *
48     * @param string $key
49     * @return string
50     */
51    private function getDefaultHeader($key)
52    {
53        return '<?php' . PHP_EOL
54            . '/**' . PHP_EOL
55            . ' * Default config header created during install' . PHP_EOL
56            . ' */' . PHP_EOL;
57    }
58
59    /**
60     * (non-PHPdoc)
61     * @see common_persistence_PhpFileDriver::getPath()
62     */
63    protected function getPath($key)
64    {
65        $parts = explode('/', $key);
66        $path = substr(parent::getPath(array_shift($parts)), 0, -4);
67        foreach ($parts as $part) {
68            $path .= DIRECTORY_SEPARATOR . $this->sanitizeReadableFileName($part);
69        }
70        return $path . '.conf.php';
71    }
72}