| 1 |
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly |
| 2 |
class Rest_Controller_LC_HC_MVC extends _HC_MVC |
| 3 |
{ |
| 4 |
public function execute() |
| 5 |
{ |
| 6 |
$view = $this->app->make('/rest/view') |
| 7 |
->render() |
| 8 |
; |
| 9 |
$view = $this->app->make('/rest/view/layout') |
| 10 |
->render($view) |
| 11 |
; |
| 12 |
$view = $this->app->make('/layout/view/body') |
| 13 |
->set_content($view) |
| 14 |
; |
| 15 |
return $this->app->make('/http/view/response') |
| 16 |
->set_view($view) |
| 17 |
; |
| 18 |
} |
| 19 |
} |