AbstractController::onRender()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 1
nc 1
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\Tight Tight App
41
     */
42
    private $app;
43
44
    /**
45
     * @var \Tight\Mvc\AbstractView
46
     */
47
    private $view;
48
49
    /**
50
     * @var \Tight\Mvc\AbstractModel
51
     */
52
    private $model;
53
54
    public function __construct(AbstractModel $model, AbstractView $view) {
55
        $this->app = \Tight\Tight::getInstance();
56
        $this->setView($view);
57
        $this->setModel($model);
58
        $this->onLoad();
59
    }
60
61
    /**
62
     * Gets the Tight App
63
     * @return \Tight\Tight
64
     */
65
    public function getApp() {
66
        return $this->app;
67
    }
68
69
    /**
70
     * Gets the view
71
     * @return \Tight\Mvc\AbstractView
72
     */
73
    public function getView() {
74
        return $this->view;
75
    }
76
77
    /**
78
     * Gets the model
79
     * @return \Tight\Mvc\AbstractModel
80
     */
81
    public function getModel() {
82
        return $this->model;
83
    }
84
85
    /**
86
     * Sets the view
87
     * @param \Tight\Mvc\AbstractView $view View
88
     * @return \Tight\Mvc\AbstractController Fluent setter
89
     */
90
    public function setView(AbstractView $view) {
91
        $this->view = $view;
92
        return $this;
93
    }
94
95
    /**
96
     * Sets the model
97
     * @param \Tight\Mvc\AbstractModel $model Model
98
     * @return \Tight\Mvc\AbstractController Fluent setter
99
     */
100
    public function setModel(AbstractModel $model) {
101
        $this->model = $model;
102
        return $this;
103
    }
104
105
    /**
106
     * Event fired when the controller is instanciated 
107
     */
108
    abstract public function onLoad();
109
110
    abstract public function parseActions();
111
112
    /**
113
     * Event fired before rendering the view
114
     */
115
    abstract public function onRender();
116
117
    /**
118
     * Event fired after rendering the view
119
     */
120
    abstract public function onFinish();
121
122
    /**
123
     * Renders the view
124
     */
125
    public function render() {
126
        // Fire \Tight\Mvc\AbstractView::onLoad event
127
        $this->view->onLoad();
128
        // Fire actions
129
        $this->parseActions();
130
        // Fire \Tight\Mvc\AbstractController::onRender event
131
        $this->onRender();
132
        $variables = $this->model->getVars();
133
        if (count($variables) > 0) {
134
            foreach ($variables as $key => $value) {
135
                $this->view->assign($key, $value);
136
            }
137
        }
138
        $this->view->render();
139
        // Fires \Tight\Mvc\AbstractController::onFinish event
140
        $this->onFinish();
141
    }
142
143
}
144