-
Notifications
You must be signed in to change notification settings - Fork 0
/
View.php
80 lines (64 loc) · 1.58 KB
/
View.php
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
<?php
namespace Automater;
require_once 'vendor/autoload.php';
class View extends BaseObject{
private $loader = null;
private $twig = null;
private $data = null;
public function __construct(){
$this->loader = new \Twig_Loader_Filesystem('templates');
$this->twig = new \Twig_Environment($this->loader,array(
'debug' => true,
));
$this->twig->addExtension(new \Twig_Extension_Debug());
}
public function setData($data){
$this->data = $data;
}
public function renderView($which){
/**
* Make sure there is a view selected
*/
try{
if(!isset($which)){
throw new \Exception("A view must be selected");
}
}catch(\Exception $e){
\error_log($e->getMessage());
}
$template = null;
switch($which){
case 'base':
$template = self::getBaseView($this->data);
break;
case 'login':
$template = self::getLoginView($this->data);
break;
case 'feed':
$template = self::getFeedView($this->data);
break;
default:
$template = self::getBaseView($this->data);
}
return $template;
}
private function getBaseView($data){
$template = $this->twig->load("index.html");
return $template->render(array(
'data' => $data,
));
}
private function getLoginView($data){
$template = $this->twig->load("login.html");
return $template->render(array(
'data' => $data,
));
}
private function getFeedView($data){
$template = $this->twig->load("feed.html");
return $template->render(array(
'data' => $data,
));
}
}
?>