* Code for task #36060.

This commit is contained in:
holan20180123
2021-03-03 09:05:46 +08:00
parent 6f6bda28bb
commit dbc0a6c9bb
17 changed files with 243 additions and 99 deletions
+24
View File
@@ -538,6 +538,30 @@ class custom extends control
$this->display();
}
/**
* Set flow.
*
* @access public
* @return void
*/
public function flow()
{
if($_POST)
{
$this->custom->setConcept();
$this->loadModel('setting')->setItem('system.custom.URAndSR', $this->post->URAndSR);
$this->app->loadLang('common');
$locate = inlink('flow');
$this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => $locate));
}
$this->view->title = $this->lang->custom->flow;
$this->view->position[] = $this->lang->custom->flow;
$this->display();
}
/**
* Set Mode.
*