fastadmin控制器php
<?php namespace app\admin\controller\peizi; use app\common\controller\Backend; /** * * * @icon fa fa-circle-o */ class Config extends Backend { /** * Config模型對象 * @var \app\admin\model\weixinitem\Config */ //protected $model = null; public function _initialize() { // parent::_initialize(); //$this->model = new \app\admin\model\peizi\Config; //$this->view->assign("gztypeList", $this->model->getGztypeList()); } /** * 默認生成的控制器所繼承的父類中有index/add/edit/del/multi五個基礎方法、destroy/restore/recyclebin三個回收站方法 * 所以在當前控制器中可不用編寫增刪改查的代碼,除非須要本身控制這部分邏輯 * 須要將application/admin/library/traits/Backend.php中對應的方法複製到當前控制器,而後進行修改 * * 下面將這些方法屬性放下面 */ //application/admin/library/traits/Backend.php的trait Backend類 /** * 查看 */ public function index() { //設置過濾方法 $this->request->filter(['strip_tags']); if ($this->request->isAjax()) { //若是發送的來源是Selectpage,則轉發到Selectpage if ($this->request->request('keyField')) { return $this->selectpage(); } list($where, $sort, $order, $offset, $limit) = $this->buildparams(); $total = $this->model ->where($where) ->order($sort, $order) ->count(); $list = $this->model ->where($where) ->order($sort, $order) ->limit($offset, $limit) ->select(); $list = collection($list)->toArray(); $result = array("total" => $total, "rows" => $list); return json($result); } return $this->view->fetch(); } /** * 回收站 */ public function recyclebin() { //設置過濾方法 $this->request->filter(['strip_tags']); if ($this->request->isAjax()) { list($where, $sort, $order, $offset, $limit) = $this->buildparams(); $total = $this->model ->onlyTrashed() ->where($where) ->order($sort, $order) ->count(); $list = $this->model ->onlyTrashed() ->where($where) ->order($sort, $order) ->limit($offset, $limit) ->select(); $result = array("total" => $total, "rows" => $list); return json($result); } return $this->view->fetch(); } /** * 添加 */ public function add() { if ($this->request->isPost()) { $params = $this->request->post("row/a"); if ($params) { if ($this->dataLimit && $this->dataLimitFieldAutoFill) { $params[$this->dataLimitField] = $this->auth->id; } try { //是否採用模型驗證 if ($this->modelValidate) { $name = str_replace("\\model\\", "\\validate\\", get_class($this->model)); $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate; $this->model->validate($validate); } $result = $this->model->allowField(true)->save($params); if ($result !== false) { $this->success(); } else { $this->error($this->model->getError()); } } catch (\think\exception\PDOException $e) { $this->error($e->getMessage()); } catch (\think\Exception $e) { $this->error($e->getMessage()); } } $this->error(__('Parameter %s can not be empty', '')); } return $this->view->fetch(); } /** * 編輯 */ public function edit($ids = NULL) { $row = $this->model->get($ids); if (!$row) $this->error(__('No Results were found')); $adminIds = $this->getDataLimitAdminIds(); if (is_array($adminIds)) { if (!in_array($row[$this->dataLimitField], $adminIds)) { $this->error(__('You have no permission')); } } if ($this->request->isPost()) { $params = $this->request->post("row/a"); if ($params) { try { //是否採用模型驗證 if ($this->modelValidate) { $name = str_replace("\\model\\", "\\validate\\", get_class($this->model)); $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate; $row->validate($validate); } $result = $row->allowField(true)->save($params); if ($result !== false) { $this->success(); } else { $this->error($row->getError()); } } catch (\think\exception\PDOException $e) { $this->error($e->getMessage()); } catch (\think\Exception $e) { $this->error($e->getMessage()); } } $this->error(__('Parameter %s can not be empty', '')); } $this->view->assign("row", $row); return $this->view->fetch(); } /** * 刪除 */ public function del($ids = "") { if ($ids) { $pk = $this->model->getPk(); $adminIds = $this->getDataLimitAdminIds(); if (is_array($adminIds)) { $count = $this->model->where($this->dataLimitField, 'in', $adminIds); } $list = $this->model->where($pk, 'in', $ids)->select(); $count = 0; foreach ($list as $k => $v) { $count += $v->delete(); } if ($count) { $this->success(); } else { $this->error(__('No rows were deleted')); } } $this->error(__('Parameter %s can not be empty', 'ids')); } /** * 真實刪除 */ public function destroy($ids = "") { $pk = $this->model->getPk(); $adminIds = $this->getDataLimitAdminIds(); if (is_array($adminIds)) { $count = $this->model->where($this->dataLimitField, 'in', $adminIds); } if ($ids) { $this->model->where($pk, 'in', $ids); } $count = 0; $list = $this->model->onlyTrashed()->select(); foreach ($list as $k => $v) { $count += $v->delete(true); } if ($count) { $this->success(); } else { $this->error(__('No rows were deleted')); } $this->error(__('Parameter %s can not be empty', 'ids')); } /** * 還原 */ public function restore($ids = "") { $pk = $this->model->getPk(); $adminIds = $this->getDataLimitAdminIds(); if (is_array($adminIds)) { $this->model->where($this->dataLimitField, 'in', $adminIds); } if ($ids) { $this->model->where($pk, 'in', $ids); } $count = 0; $list = $this->model->onlyTrashed()->select(); foreach ($list as $index => $item) { $count += $item->restore(); } if ($count) { $this->success(); } $this->error(__('No rows were updated')); } /** * 批量更新 */ public function multi($ids = "") { $ids = $ids ? $ids : $this->request->param("ids"); if ($ids) { if ($this->request->has('params')) { parse_str($this->request->post("params"), $values); if (!$this->auth->isSuperAdmin()) { $values = array_intersect_key($values, array_flip(is_array($this->multiFields) ? $this->multiFields : explode(',', $this->multiFields))); } if ($values) { $adminIds = $this->getDataLimitAdminIds(); if (is_array($adminIds)) { $this->model->where($this->dataLimitField, 'in', $adminIds); } $count = 0; $list = $this->model->where($this->model->getPk(), 'in', $ids)->select(); foreach ($list as $index => $item) { $count += $item->allowField(true)->isUpdate(true)->save($values); } if ($count) { $this->success(); } else { $this->error(__('No rows were updated')); } } else { $this->error(__('You have no permission')); } } } $this->error(__('Parameter %s can not be empty', 'ids')); } /** * 導入 */ protected function import() { $file = $this->request->request('file'); if (!$file) { $this->error(__('Parameter %s can not be empty', 'file')); } $filePath = ROOT_PATH . DS . 'public' . DS . $file; if (!is_file($filePath)) { $this->error(__('No results were found')); } $PHPReader = new \PHPExcel_Reader_Excel2007(); if (!$PHPReader->canRead($filePath)) { $PHPReader = new \PHPExcel_Reader_Excel5(); if (!$PHPReader->canRead($filePath)) { $PHPReader = new \PHPExcel_Reader_CSV(); if (!$PHPReader->canRead($filePath)) { $this->error(__('Unknown data format')); } } } //導入文件首行類型,默認是註釋,若是須要使用字段名稱請使用name $importHeadType = isset($this->importHeadType) ? $this->importHeadType : 'comment'; $table = $this->model->getQuery()->getTable(); $database = \think\Config::get('database.database'); $fieldArr = []; $list = db()->query("SELECT COLUMN_NAME,COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ? AND TABLE_SCHEMA = ?", [$table, $database]); foreach ($list as $k => $v) { if ($importHeadType == 'comment') { $fieldArr[$v['COLUMN_COMMENT']] = $v['COLUMN_NAME']; } else { $fieldArr[$v['COLUMN_NAME']] = $v['COLUMN_NAME']; } } $PHPExcel = $PHPReader->load($filePath); //加載文件 $currentSheet = $PHPExcel->getSheet(0); //讀取文件中的第一個工做表 $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列號 $allRow = $currentSheet->getHighestRow(); //取得一共有多少行 $maxColumnNumber = \PHPExcel_Cell::columnIndexFromString($allColumn); for ($currentRow = 1; $currentRow <= 1; $currentRow++) { for ($currentColumn = 0; $currentColumn < $maxColumnNumber; $currentColumn++) { $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue(); $fields[] = $val; } } $insert = []; for ($currentRow = 2; $currentRow <= $allRow; $currentRow++) { $values = []; for ($currentColumn = 0; $currentColumn < $maxColumnNumber; $currentColumn++) { $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue(); $values[] = is_null($val) ? '' : $val; } $row = []; $temp = array_combine($fields, $values); foreach ($temp as $k => $v) { if (isset($fieldArr[$k]) && $k !== '') { $row[$fieldArr[$k]] = $v; } } if ($row) { $insert[] = $row; } } if (!$insert) { $this->error(__('No rows were updated')); } try { $this->model->saveAll($insert); } catch (\think\exception\PDOException $exception) { $this->error($exception->getMessage()); } catch (\Exception $e) { $this->error($e->getMessage()); } $this->success(); } //app\common\controller\Backend類屬性 /** * 無需登陸的方法,同時也就不須要鑑權了 * @var array */ protected $noNeedLogin = []; /** * 無需鑑權的方法,但須要登陸 * @var array */ protected $noNeedRight = []; /** * 佈局模板 * @var string */ protected $layout = 'default'; /** * 權限控制類 * @var Auth */ protected $auth = null; /** * 快速搜索時執行查找的字段 */ protected $searchFields = 'id'; /** * 是不是關聯查詢 */ protected $relationSearch = false; /** * 是否開啓數據限制 * 支持auth/personal * 表示按權限判斷/僅限我的 * 默認爲禁用,若啓用請務必保證表中存在admin_id字段 */ protected $dataLimit = false; /** * 數據限制字段 */ protected $dataLimitField = 'admin_id'; /** * 是否開啓Validate驗證 */ protected $modelValidate = false; /** * 是否開啓模型場景驗證 */ protected $modelSceneValidate = false; /** * Multi方法可批量修改的字段 */ protected $multiFields = 'status'; //app\common\controller\Backend類方法 /** * 加載語言文件 * @param string $name */ protected function loadlang($name) { } /** * 渲染配置信息 * @param mixed $name 鍵名或數組 * @param mixed $value 值 */ protected function assignconfig($name, $value = '') { } /** * 生成查詢所須要的條件,排序方式 * @param mixed $searchfields 快速查詢的字段 * @param boolean $relationSearch 是否關聯查詢 * @return array */ protected function buildparams($searchfields = null, $relationSearch = null) { } /** * 獲取數據限制的管理員ID * 禁用數據限制時返回的是null * @return mixed */ protected function getDataLimitAdminIds() { } /** * Selectpage的實現方法 * * 當前方法只是一個比較通用的搜索匹配,請按需重載此方法來編寫本身的搜索邏輯,$where按本身的需求寫便可 * 這裏示例了全部的參數,因此比較複雜,實現上本身實現只需簡單的幾行便可 * */ protected function selectpage() { } }