Completed
Push — master ( ee49f4...f8fced )
by Alejandro
02:23
created

AbstractController::render()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 13
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 13
rs 9.4285
cc 2
eloc 8
nc 2
nop 0
1
<?php
2
3
namespace Tight;
4
5
/*
6
 * The MIT License
7
 *
8
 * Copyright 2016 Alejandro Peña Florentín ([email protected])
9
 *
10
 * Permission is hereby granted, free of charge, to any person obtaining a copy
11
 * of this software and associated documentation files (the "Software"), to deal
12
 * in the Software without restriction, including without limitation the rights
13
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
 * copies of the Software, and to permit persons to whom the Software is
15
 * furnished to do so, subject to the following conditions:
16
 *
17
 * The above copyright notice and this permission notice shall be included in
18
 * all copies or substantial portions of the Software.
19
 *
20
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
 * THE SOFTWARE.
27
 */
28
29
namespace Tight\Mvc;
30
31
/**
32
 * AbstractController class
33
 *
34
 * @author Alejandro Peña Florentín ([email protected])
35
 */
36
abstract class AbstractController
37
{
38
39
    /**
40
     * @var \Tight\Mvc\AbstractView
41
     */
42
    private $view;
43
44
    /**
45
     * @var \Tight\Mvc\AbstractModel
46
     */
47
    private $model;
48
49
    public function __construct(AbstractModel $model, AbstractView $view) {
50
        $this->setView($view);
51
        $this->setModel($model);
52
        $this->onLoad();
53
    }
54
55
    /**
56
     * Gets the view
57
     * @return \Tight\Mvc\AbstractView
58
     */
59
    public function getView() {
60
        return $this->view;
61
    }
62
63
    /**
64
     * Gets the model
65
     * @return \Tight\Mvc\AbstractModel
66
     */
67
    public function getModel() {
68
        return $this->model;
69
    }
70
71
    /**
72
     * Sets the view
73
     * @param \Tight\Mvc\AbstractView $view View
74
     * @return \Tight\Mvc\AbstractController Fluent setter
75
     */
76
    public function setView(AbstractView $view) {
77
        $this->view = $view;
78
        return $this;
79
    }
80
81
    /**
82
     * Sets the model
83
     * @param \Tight\Mvc\AbstractModel $model Model
84
     * @return \Tight\Mvc\AbstractController Fluent setter
85
     */
86
    public function setModel(AbstractModel $model) {
87
        $this->model = $model;
88
        return $this;
89
    }
90
91
    /**
92
     * Event fired when the controller is instanciated 
93
     */
94
    abstract public function onLoad();
95
96
    /**
97
     * Event fired before rendering the view
98
     */
99
    abstract public function onRender();
100
101
    /**
102
     * Event fired after rendering the view
103
     */
104
    abstract public function onFinish();
105
106
    /**
107
     * Renders the view
108
     */
109
    public function render() {
110
        // Fire \Tight\Mvc\AbstractView::onLoad event
111
        $this->view->onLoad();
112
        // Fire \Tight\Mvc\AbstractController::onRender event
113
        $this->onRender();
114
        $variables = $this->model->getVars();
115
        foreach ($variables as $key => $value) {
116
            $this->view->assign($key, $value);
117
        }
118
        $this->view->render();
119
        // Fires \Tight\Mvc\AbstractController::onFinish event
120
        $this->onFinish();
121
    }
122
123
}
124