Passed
Branch master (b0d099)
by Markus
03:49
created

HtmlOutput   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 42
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 5

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 42
ccs 0
cts 25
cp 0
rs 10
wmc 4
lcom 1
cbo 5

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 18 1
A setVariable() 0 4 1
A setTemplate() 0 4 1
A output() 0 5 1
1
<?php
2
3
namespace SSpkS\Output;
4
5
use \Mustache_Engine;
6
use \Mustache_Loader_FilesystemLoader;
7
use \Mustache_Logger_StreamLogger;
8
9
class HtmlOutput
10
{
11
    private $config;
12
    private $mustache;
13
    private $tplVars;
14
    private $template;
15
16
    public function __construct(\SSpkS\Config $config)
17
    {
18
        $this->config = $config;
19
        $tplBase  = $this->config->basePath . DIRECTORY_SEPARATOR . $this->config->paths['themes'];
20
        $tplBase .= $this->config->site['theme'] . DIRECTORY_SEPARATOR . 'templates';
21
22
        $this->mustache = new Mustache_Engine(array(
23
            'loader'          => new Mustache_Loader_FilesystemLoader($tplBase),
24
            'partials_loader' => new Mustache_Loader_FilesystemLoader($tplBase . '/partials'),
25
            'charset'         => 'utf-8',
26
            'logger'          => new Mustache_Logger_StreamLogger('php://stderr'),
27
        ));
28
29
        $this->setVariable('siteName', $this->config->site['name']);
30
        $this->setVariable('baseUrl', $this->config->baseUrl);
31
        $this->setVariable('themeUrl', $this->config->baseUrl . $this->config->paths['themes'] . $this->config->site['theme'] . '/');
32
        $this->setVariable('requestUri', $_SERVER['REQUEST_URI']);
33
    }
34
35
    public function setVariable($name, $value)
36
    {
37
        $this->tplVars[$name] = $value;
38
    }
39
40
    public function setTemplate($tplName)
41
    {
42
        $this->template = $tplName;
43
    }
44
45
    public function output()
46
    {
47
        $tpl = $this->mustache->loadTemplate($this->template);
48
        echo $tpl->render($this->tplVars);
49
    }
50
}
51