AdminNotice.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\Message; |
| 4 | |
| 5 | use AC\View; |
| 6 | |
| 7 | class AdminNotice extends Notice |
| 8 | { |
| 9 | |
| 10 | public function render(): string |
| 11 | { |
| 12 | $data = [ |
| 13 | 'message' => $this->message, |
| 14 | 'type' => $this->type, |
| 15 | 'id' => $this->id, |
| 16 | ]; |
| 17 | |
| 18 | $view = new View($data); |
| 19 | $view->set_template('message/notice/admin'); |
| 20 | |
| 21 | return $view->render(); |
| 22 | } |
| 23 | |
| 24 | } |