From 708594d32ffe779cf547c816fa7cdd19d095be2e Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Mon, 20 May 2024 17:11:38 -0400 Subject: v2 done --- src/web/_controller/apps/settings.php | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/web/_controller/apps/settings.php (limited to 'src/web/_controller/apps/settings.php') diff --git a/src/web/_controller/apps/settings.php b/src/web/_controller/apps/settings.php new file mode 100644 index 0000000..8a409cc --- /dev/null +++ b/src/web/_controller/apps/settings.php @@ -0,0 +1,41 @@ +settings_model = $this->load->model('apps/settings'); + } + + public function index(): void { + if (!$this->main->session) { + $this->redirect('/auth/login'); + } + + parent::index(); + $data = $this->settings_model->get_data(); + + if (!$data) { + $this->error(404); + } + + $this->load->app_lang($this->main->info['lang'], 'auth'); + $this->view('header', $data); + $this->view('apps/settings/main', $data); + $this->view('footer', $data); + } + +} + +?> -- cgit v1.2.3-freya