心理咨询网
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ModelController.php 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年3月1日
  7. * 内容模型控制器
  8. */
  9. namespace app\admin\controller\content;
  10. use core\basic\Controller;
  11. use app\admin\model\content\ModelModel;
  12. class ModelController extends Controller
  13. {
  14. private $model;
  15. public function __construct()
  16. {
  17. $this->model = new ModelModel();
  18. }
  19. // 内容模型列表
  20. public function index()
  21. {
  22. if ((! ! $id = get('id', 'int')) && $result = $this->model->getModel($id)) {
  23. $this->assign('more', true);
  24. $this->assign('model', $result);
  25. } else {
  26. $this->assign('list', true);
  27. if (! ! ($field = get('field', 'var')) && ! ! ($keyword = get('keyword', 'vars'))) {
  28. $result = $this->model->findModel($field, $keyword);
  29. } else {
  30. $result = $this->model->getList();
  31. }
  32. $this->assign('models', $result);
  33. }
  34. $this->display('content/model.html');
  35. }
  36. // 内容模型增加
  37. public function add()
  38. {
  39. if ($_POST) {
  40. // 获取数据
  41. $mcode = get_auto_code($this->model->getLastCode());
  42. $name = post('name');
  43. $type = post('type');
  44. $urlname = post('urlname');
  45. $listtpl = basename(post('listtpl'));
  46. $contenttpl = basename(post('contenttpl'));
  47. $status = post('status');
  48. if (! $name) {
  49. alert_back('模型名称不能为空!');
  50. }
  51. if ($type == 1) {
  52. if (! $urlname)
  53. $urlname = 'about';
  54. } else {
  55. if (! $urlname)
  56. $urlname = 'list';
  57. }
  58. if ($urlname && ! preg_match('/^[a-zA-Z0-9\-]+$/', $urlname)) {
  59. alert_back('模型URL名称只允许字母、数字、横线组成!');
  60. }
  61. if ($this->model->checkUrlname($urlname, $type)) {
  62. alert_back('模型URL名称与其他模型冲突,请换一个名称!');
  63. }
  64. if ($this->model->checkSortFilename($urlname)) {
  65. alert_back('模型URL名称与栏目URL名称冲突,请换一个名称!');
  66. }
  67. // 构建数据
  68. $data = array(
  69. 'mcode' => $mcode,
  70. 'name' => $name,
  71. 'type' => $type,
  72. 'urlname' => $urlname,
  73. 'listtpl' => $listtpl,
  74. 'contenttpl' => $contenttpl,
  75. 'status' => $status,
  76. 'issystem' => 0,
  77. 'create_user' => session('username'),
  78. 'update_user' => session('username')
  79. );
  80. // 执行添加
  81. if ($this->model->addModel($data)) {
  82. $this->log('新增内容模型成功!');
  83. if (! ! $backurl = get('backurl')) {
  84. success('新增成功!', base64_decode($backurl));
  85. } else {
  86. success('新增成功!', url('/admin/Model/index'));
  87. }
  88. } else {
  89. $this->log('新增内容模型失败!');
  90. error('新增失败!', - 1);
  91. }
  92. }
  93. }
  94. // 内容模型删除
  95. public function del()
  96. {
  97. if (! $id = get('id', 'int')) {
  98. error('传递的参数值错误!', - 1);
  99. }
  100. if ($this->model->delModel($id)) {
  101. $this->log('删除内容模型' . $id . '成功!');
  102. success('删除成功!', - 1);
  103. } else {
  104. $this->log('删除内容模型' . $id . '失败!');
  105. error('删除失败!', - 1);
  106. }
  107. }
  108. // 内容模型修改
  109. public function mod()
  110. {
  111. if (! $id = get('id', 'int')) {
  112. error('传递的参数值错误!', - 1);
  113. }
  114. // 单独修改状态
  115. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  116. if ($this->model->modModel($id, "$field='$value',update_user='" . session('username') . "'")) {
  117. location(- 1);
  118. } else {
  119. alert_back('修改失败!');
  120. }
  121. }
  122. // 修改操作
  123. if ($_POST) {
  124. // 获取数据
  125. $name = post('name');
  126. $type = post('type');
  127. $urlname = post('urlname');
  128. $listtpl = basename(post('listtpl'));
  129. $contenttpl = basename(post('contenttpl'));
  130. $status = post('status');
  131. if (! $name) {
  132. alert_back('模型名称不能为空!');
  133. }
  134. if ($type == 1) {
  135. if (! $urlname)
  136. $urlname = 'about';
  137. } else {
  138. if (! $urlname)
  139. $urlname = 'list';
  140. }
  141. if ($urlname && ! preg_match('/^[a-zA-Z0-9\-]+$/', $urlname)) {
  142. alert_back('模型URL名称只允许字母、数字、横线组成!');
  143. }
  144. if ($this->model->checkUrlname($urlname, $type, "id<>$id")) {
  145. alert_back('模型URL名称与其他模型冲突,请换一个名称!');
  146. }
  147. if ($this->model->checkSortFilename($urlname)) {
  148. alert_back('模型URL名称与栏目URL名称冲突,请换一个名称!');
  149. }
  150. // 构建数据
  151. $data = array(
  152. 'name' => $name,
  153. 'type' => $type,
  154. 'urlname' => $urlname,
  155. 'listtpl' => $listtpl,
  156. 'contenttpl' => $contenttpl,
  157. 'status' => $status,
  158. 'update_user' => session('username')
  159. );
  160. // 执行添加
  161. if ($this->model->modModel($id, $data)) {
  162. $this->log('修改内容模型' . $id . '成功!');
  163. if (! ! $backurl = get('backurl')) {
  164. success('修改成功!', base64_decode($backurl));
  165. } else {
  166. success('修改成功!', url('/admin/Model/index'));
  167. }
  168. } else {
  169. location(- 1);
  170. }
  171. } else {
  172. // 调取修改内容
  173. $this->assign('mod', true);
  174. if (! $result = $this->model->getModel($id)) {
  175. error('编辑的内容已经不存在!', - 1);
  176. }
  177. $this->assign('model', $result);
  178. $this->display('content/model.html');
  179. }
  180. }
  181. }