From 3a82baec9d793edf81ac2b151b0f4d4159641375 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Mon, 1 Apr 2024 11:09:25 -0400 Subject: login and register, liking on homepage --- web/_controller/template.php | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 web/_controller/template.php (limited to 'web/_controller/template.php') diff --git a/web/_controller/template.php b/web/_controller/template.php deleted file mode 100644 index 7a8cdf8..0000000 --- a/web/_controller/template.php +++ /dev/null @@ -1,22 +0,0 @@ -request_model = $this->load->model('request'); - } - - public function toast(): void { - $data = array( - 'msg' => $this->request_model->get_str('msg', FALSE), - 'detail' => $this->request_model->get_str('detail', FALSE), - 'hint' => $this->request_model->get_str('hint', FALSE) - ); - $this->view('template/toast', $data); - } - -} - -- cgit v1.2.3-freya