@@ -479,4 +479,10 @@ trait Backend
$this->success();
}
+ public function info($id)
+ {
+ $row = $this->model->get($id);
+ $this->assign('info',$row);
+ return $this->view->fetch();
+ }