mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
started with some frontend stuff
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user