Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
9 / 9 |
View | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
4 | |
100.00% |
9 / 9 |
assign | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
draw | |
100.00% |
1 / 1 |
3 | |
100.00% |
7 / 7 |
<?php | |
/** | |
* PrivateBin | |
* | |
* a zero-knowledge paste bin | |
* | |
* @link https://github.com/PrivateBin/PrivateBin | |
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net) | |
* @license http://www.opensource.org/licenses/zlib-license.php The zlib/libpng License | |
* @version 1.4.0 | |
*/ | |
namespace PrivateBin; | |
use Exception; | |
/** | |
* View | |
* | |
* Displays the templates | |
*/ | |
class View | |
{ | |
/** | |
* variables available in the template | |
* | |
* @access private | |
* @var array | |
*/ | |
private $_variables = array(); | |
/** | |
* assign variables to be used inside of the template | |
* | |
* @access public | |
* @param string $name | |
* @param mixed $value | |
*/ | |
public function assign($name, $value) | |
{ | |
$this->_variables[$name] = $value; | |
} | |
/** | |
* render a template | |
* | |
* @access public | |
* @param string $template | |
* @throws Exception | |
*/ | |
public function draw($template) | |
{ | |
$file = substr($template, 0, 9) === 'bootstrap' ? 'bootstrap' : $template; | |
$path = PATH . 'tpl' . DIRECTORY_SEPARATOR . $file . '.php'; | |
if (!file_exists($path)) { | |
throw new Exception('Template ' . $template . ' not found!', 80); | |
} | |
extract($this->_variables); | |
include $path; | |
} | |
} |