View class, refactoring

This commit is contained in:
xinatorus 2020-05-04 21:19:14 +02:00
parent 8d2af9181a
commit 63e7c95415
8 changed files with 104 additions and 40 deletions

View File

@ -3,12 +3,8 @@
class ExampleController extends Controller{
public function index(){
echo 'example';
// TODO:
// - set view
// - process POST variables
// ...
$this->view->title = 'Example title';
$this->view->render('example.phtml');
}
public function subpage(){

View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $this->title ?></title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
{HEADER}
</header>
<?php echo $this->content(); ?>
<footer>
{FOOTER}
</footer>
</body>
</html>

View File

@ -0,0 +1 @@
Example template

View File

@ -1,20 +0,0 @@
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

View File

@ -1,12 +1,11 @@
<?php
class ApiController {
protected $input;
protected $authenticated;
protected $authenticated = false;
function __construct() {
$this->authenticated = false;
$input = file_get_contents('php://input');
if(empty($input)){
$this->input = NULL;
}else{

View File

@ -1,5 +1,9 @@
<?php
class Controller{
public $view = null;
public function __construct(){
$this->view = new View();
}
}

63
library/View.php Normal file
View File

@ -0,0 +1,63 @@
<?php
class View{
protected $_content = "";
protected $_layout = 'default';
protected $_viewEnabled = true;
protected $_layoutEnabled = true;
protected $_data = array();
public function disableLayout(){
$this->_layoutEnabled = false;
}
public function enableLayout(){
$this->_layoutEnabled = false;
}
public function setLayout($layout){
$this->_layout = $layout;
}
public function disableView(){
$this->_viewEnabled = false;
}
public function __set($key, $value){
$this->_data[$key] = $value;
}
public function __get($key){
if(array_key_exists($key, $this->_data)){
return $this->_data[$key];
}
return null;
}
public function content(){
return $this->_content;
}
public function render($template){
if($template && $this->_viewEnabled){
$this->_fetchContent($template);
}
if($this->_layoutEnabled){
include('../app/views/layouts/' . $this->_layout . '.phtml');
} else {
echo $this->_content;
}
}
protected function _fetchContent($template){
ob_start();
include('../app/views/templates/' . $template);
$this->_content = ob_get_clean();
}
}

View File

@ -1,19 +1,20 @@
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid rgb(101, 30, 122);;
width: 100%;
height: 100%;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}