forked from daveh/php-mvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Controller.php
73 lines (65 loc) · 1.55 KB
/
Controller.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
<?php
namespace Core;
/**
* Base controller
*
* PHP version 7.0
*/
abstract class Controller
{
/**
* Parameters from the matched route
* @var array
*/
protected $route_params = [];
/**
* Class constructor
*
* @param array $route_params Parameters from the route
*
* @return void
*/
public function __construct($route_params)
{
$this->route_params = $route_params;
}
/**
* Magic method called when a non-existent or inaccessible method is
* called on an object of this class. Used to execute before and after
* filter methods on action methods. Action methods need to be named
* with an "Action" suffix, e.g. indexAction, showAction etc.
*
* @param string $name Method name
* @param array $args Arguments passed to the method
*
* @return void
*/
public function __call($name, $args)
{
$method = $name . 'Action';
if (method_exists($this, $method)) {
if ($this->before() !== false) {
call_user_func_array([$this, $method], $args);
$this->after();
}
} else {
throw new \Exception("Method $method not found in controller " . get_class($this));
}
}
/**
* Before filter - called before an action method.
*
* @return void
*/
protected function before()
{
}
/**
* After filter - called after an action method.
*
* @return void
*/
protected function after()
{
}
}