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

LabelController.php 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年03月23日
  7. * 自定义标签控制器
  8. */
  9. namespace app\admin\controller\content;
  10. use core\basic\Controller;
  11. use app\admin\model\content\LabelModel;
  12. class LabelController extends Controller
  13. {
  14. private $model;
  15. public function __construct()
  16. {
  17. $this->model = new LabelModel();
  18. }
  19. // 自定义标签列表
  20. public function index()
  21. {
  22. // 修改参数配置
  23. if ($_POST) {
  24. foreach ($_POST as $key => $value) {
  25. if (preg_match('/^[\w\-]+$/', $key)) { // 带有违规字符时不带入查询
  26. $data = post($key);
  27. $data = str_replace("\r\n", "<br>", $data); // 多行文本时替换回车
  28. $this->model->modValue($key, $data);
  29. }
  30. }
  31. success('修改成功!', url('admin/Label/index'));
  32. }
  33. $this->assign('list', true);
  34. $this->assign('labels', $this->model->getList());
  35. $this->display('content/label.html');
  36. }
  37. // 自定义标签字段增加
  38. public function add()
  39. {
  40. if ($_POST) {
  41. // 获取数据
  42. $name = post('name', 'var');
  43. $description = post('description');
  44. $type = post('type');
  45. if (! $name) {
  46. alert_back('标签名称不能为空!');
  47. }
  48. if ($name && ! preg_match('/^[a-zA-Z0-9\_\/]+$/', $name)) {
  49. alert_back('标签名称只允许字母、数字、下划线组成!');
  50. }
  51. if (! $description) {
  52. alert_back('标题描述不能为空!');
  53. }
  54. if (! $type) {
  55. alert_back('标签类型不能为空!');
  56. }
  57. // 检查标签名称
  58. if ($this->model->checkLabel("name='$name'")) {
  59. alert_back('该自定义标签称已经存在,不能再使用!');
  60. }
  61. // 构建数据
  62. $data = array(
  63. 'name' => $name,
  64. 'description' => $description,
  65. 'value' => '', // 添加时设置为空
  66. 'type' => $type,
  67. 'create_user' => session('username'),
  68. 'update_user' => session('username')
  69. );
  70. // 执行添加
  71. if ($this->model->addLabel($data)) {
  72. $this->log('修改自定义标签' . $name . '成功!');
  73. if (! ! $backurl = get('backurl')) {
  74. success('新增成功!', base64_decode($backurl));
  75. } else {
  76. success('新增成功!', url('admin/Label/index' . get_tab('t2'), false));
  77. }
  78. } else {
  79. $this->log('新增自定义标签' . $name . '失败!');
  80. error('新增失败!', url('admin/Label/index' . get_tab('t2'), false));
  81. }
  82. }
  83. }
  84. // 自定义标签字段删除
  85. public function del()
  86. {
  87. if (! $id = get('id', 'int')) {
  88. error('传递的参数值错误!', - 1);
  89. }
  90. if ($this->model->delLabel($id)) {
  91. $this->log('删除自定义标签' . $id . '成功!');
  92. success('删除成功!', url('admin/Label/index' . get_tab('t2'), false));
  93. } else {
  94. $this->log('删除自定义标签' . $id . '失败!');
  95. error('删除失败!', - 1);
  96. }
  97. }
  98. // 自定义标签字段修改
  99. public function mod()
  100. {
  101. if (! $id = get('id', 'int')) {
  102. error('传递的参数值错误!', - 1);
  103. }
  104. // 修改操作
  105. if ($_POST) {
  106. // 获取数据
  107. $name = post('name', 'var');
  108. $description = post('description');
  109. $type = post('type');
  110. if (! $name) {
  111. alert_back('标签名称不能为空!');
  112. }
  113. if ($name && ! preg_match('/^[a-zA-Z0-9\_\/]+$/', $name)) {
  114. alert_back('标签名称只允许字母、数字、下划线组成!');
  115. }
  116. if (! $description) {
  117. alert_back('标签描述不能为空!');
  118. }
  119. if (! $type) {
  120. alert_back('标签类型不能为空!');
  121. }
  122. // 检查标签名称
  123. if ($this->model->checkLabel("name='$name' AND id<>$id")) {
  124. alert_back('该自定义标签名称已经存在,不能再使用!');
  125. }
  126. // 构建数据
  127. $data = array(
  128. 'name' => $name,
  129. 'description' => $description,
  130. 'type' => $type,
  131. 'update_user' => session('username')
  132. );
  133. // 执行添加
  134. if ($this->model->modLabel($id, $data)) {
  135. $this->log('修改自定义标签字段' . $id . '成功!');
  136. success('修改成功!', url('admin/Label/index' . get_tab('t2'), false));
  137. } else {
  138. location(- 1);
  139. }
  140. } else {
  141. $this->assign('mod', true);
  142. // 调取修改内容
  143. $result = $this->model->getLabel($id);
  144. if (! $result) {
  145. error('编辑的内容已经不存在!', - 1);
  146. }
  147. $this->assign('label', $result);
  148. $this->display('content/label.html');
  149. }
  150. }
  151. }