| 1 | <?php |
||
| 9 | abstract class WebController |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var \DoliDB |
||
| 13 | */ |
||
| 14 | protected $db; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var Request |
||
| 18 | */ |
||
| 19 | protected $request; |
||
| 20 | |||
| 21 | public function __construct(\DoliDB $db) |
||
| 26 | |||
| 27 | protected function render($template, array $variables = []){ |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param string $html |
||
| 38 | */ |
||
| 39 | protected function renderHtml($html){ |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param string $location |
||
| 45 | */ |
||
| 46 | protected function redirect($location) |
||
| 56 | |||
| 57 | } |