| 1 | <?php namespace Arcanesoft\Blog\Http\Controllers\Front; |
||
| 11 | abstract class Controller extends BaseController |
||
| 12 | { |
||
| 13 | /* ----------------------------------------------------------------- |
||
| 14 | | Constructor |
||
| 15 | | ----------------------------------------------------------------- |
||
| 16 | */ |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Controller constructor. |
||
| 20 | */ |
||
| 21 | public function __construct() |
||
| 28 | |||
| 29 | /* ----------------------------------------------------------------- |
||
| 30 | | Other Methods |
||
| 31 | | ----------------------------------------------------------------- |
||
| 32 | */ |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Do random stuff before rendering view. |
||
| 36 | */ |
||
| 37 | protected function beforeViewRender() |
||
| 41 | } |
||
| 42 |