started with some frontend stuff

This commit is contained in:
HB9HIL
2024-04-25 16:37:17 +02:00
parent b3d6fabe2c
commit 51766ecc23
5 changed files with 70 additions and 6 deletions

View File

@@ -108,4 +108,16 @@ class cron extends CI_Controller {
$this->cronexpression = null;
}
}
public function editDialog() {
$this->load->model('cron_model');
$cron_query = $this->cron_model->cron(xss_clean($this->input->post('id', true)));
$data['crondetails'] = $cron_query->row();
$data['page_title'] = "Edit Cronjob";
$this->load->view('cron/edit', $data);
}
}