2016-07-19 14:02:26 +02:00
|
|
|
<?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
|
2020-01-08 19:31:06 +01:00
|
|
|
* @version 1.3.2
|
2016-07-19 14:02:26 +02:00
|
|
|
*/
|
2016-12-12 18:43:23 +01:00
|
|
|
|
2016-12-12 18:50:00 +01:00
|
|
|
namespace PrivateBin;
|
2016-08-11 15:05:43 +02:00
|
|
|
|
2016-07-21 17:09:48 +02:00
|
|
|
use Exception;
|
|
|
|
|
2016-07-19 14:02:26 +02:00
|
|
|
/**
|
2016-08-09 11:54:42 +02:00
|
|
|
* View
|
2016-07-19 14:02:26 +02:00
|
|
|
*
|
|
|
|
* Displays the templates
|
|
|
|
*/
|
2016-08-09 11:54:42 +02:00
|
|
|
class View
|
2016-07-19 14:02:26 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
2017-01-08 10:02:07 +01:00
|
|
|
$file = substr($template, 0, 9) === 'bootstrap' ? 'bootstrap' : $template;
|
|
|
|
$path = PATH . 'tpl' . DIRECTORY_SEPARATOR . $file . '.php';
|
2016-07-26 08:19:35 +02:00
|
|
|
if (!file_exists($path)) {
|
2016-07-19 14:02:26 +02:00
|
|
|
throw new Exception('Template ' . $template . ' not found!', 80);
|
|
|
|
}
|
|
|
|
extract($this->_variables);
|
|
|
|
include $path;
|
|
|
|
}
|
|
|
|
}
|