blob: f85c7f28327a9d5d954f88081ca26ce5417f48da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
<?php
namespace Kanboard\Core;
/**
* Template
*
* @package core
* @author Frederic Guillot
*/
class Template
{
/**
* Helper object
*
* @access private
* @var Helper
*/
private $helper;
/**
* List of template overrides
*
* @access private
* @var array
*/
private $overrides = array();
/**
* Template constructor
*
* @access public
* @param Helper $helper
*/
public function __construct(Helper $helper)
{
$this->helper = $helper;
}
/**
* Expose helpers with magic getter
*
* @access public
* @param string $helper
* @return mixed
*/
public function __get($helper)
{
return $this->helper->getHelper($helper);
}
/**
* Render a template
*
* Example:
*
* $template->render('template_name', ['bla' => 'value']);
*
* @access public
* @param string $__template_name Template name
* @param array $__template_args Key/Value map of template variables
* @return string
*/
public function render($__template_name, array $__template_args = array())
{
extract($__template_args);
ob_start();
include $this->getTemplateFile($__template_name);
return ob_get_clean();
}
/**
* Define a new template override
*
* @access public
* @param string $original_template
* @param string $new_template
*/
public function setTemplateOverride($original_template, $new_template)
{
$this->overrides[$original_template] = $new_template;
}
/**
* Find template filename
*
* Core template name: 'task/show'
* Plugin template name: 'myplugin:task/show'
*
* @access public
* @param string $template_name
* @return string
*/
public function getTemplateFile($template_name)
{
$template_name = isset($this->overrides[$template_name]) ? $this->overrides[$template_name] : $template_name;
if (strpos($template_name, ':') !== false) {
list($plugin, $template) = explode(':', $template_name);
$path = __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'plugins';
$path .= DIRECTORY_SEPARATOR.ucfirst($plugin).DIRECTORY_SEPARATOR.'Template'.DIRECTORY_SEPARATOR.$template.'.php';
} else {
$path = __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'Template'.DIRECTORY_SEPARATOR.$template_name.'.php';
}
return $path;
}
}
|