1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php namespace System;
- class Route {
-
- public $key;
-
- public $callback;
-
- public $parameters;
-
- public function __construct($key, $callback, $parameters = array())
- {
- $this->key = $key;
- $this->callback = $callback;
- $this->parameters = $parameters;
- }
-
- public function call()
- {
- $response = null;
-
-
-
-
- if (is_callable($this->callback))
- {
- $response = call_user_func_array($this->callback, $this->parameters);
- }
-
-
-
-
- elseif (is_array($this->callback))
- {
- $response = isset($this->callback['before']) ? Route\Filter::call($this->callback['before'], array(), true) : null;
-
-
-
-
-
- if (is_null($response) and isset($this->callback['do']))
- {
- $response = call_user_func_array($this->callback['do'], $this->parameters);
- }
- }
- $response = Response::prepare($response);
- if (is_array($this->callback) and isset($this->callback['after']))
- {
- Route\Filter::call($this->callback['after'], array($response));
- }
- return $response;
- }
- }
|