心理咨询网
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

MessageController.php 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年3月29日
  7. * 留言控制器
  8. */
  9. namespace app\admin\controller\content;
  10. use core\basic\Controller;
  11. use app\admin\model\content\MessageModel;
  12. class MessageController extends Controller
  13. {
  14. private $model;
  15. public function __construct()
  16. {
  17. $this->model = new MessageModel();
  18. }
  19. // 列表
  20. public function index()
  21. {
  22. $this->assign('list', true);
  23. $this->assign('fields', $this->model->getFormFieldByCode(1)); // 获取字段
  24. if (get('export')) {
  25. $this->assign('messages', $this->model->getList(false));
  26. header("Content-Type:application/vnd.ms-excel");
  27. header('Cache-Control: max-age=0');
  28. header("Content-Disposition:filename=留言记录-" . date("YmdHis") . ".xls");
  29. $this->display('content/exmessage.html');
  30. } else {
  31. $this->assign('messages', $this->model->getList(true));
  32. $this->display('content/message.html');
  33. }
  34. }
  35. // 删除
  36. public function del()
  37. {
  38. if (! $id = get('id', 'int')) {
  39. error('传递的参数值错误!', - 1);
  40. }
  41. if ($this->model->delMessage($id)) {
  42. $this->log('删除留言' . $id . '成功!');
  43. success('删除成功!', - 1);
  44. } else {
  45. $this->log('删除留言' . $id . '失败!');
  46. error('删除失败!', - 1);
  47. }
  48. }
  49. // 修改
  50. public function mod()
  51. {
  52. if (! $id = get('id', 'int')) {
  53. error('传递的参数值错误!', - 1);
  54. }
  55. // 单独修改状态
  56. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  57. if ($this->model->modMessage($id, "$field='$value',update_user='" . session('username') . "'")) {
  58. location(- 1);
  59. } else {
  60. alert_back('修改失败!');
  61. }
  62. }
  63. // 修改操作
  64. if ($_POST) {
  65. // 获取数据
  66. $recontent = post('recontent');
  67. $status = post('status');
  68. // 构建数据
  69. $data = array(
  70. 'recontent' => $recontent,
  71. 'status' => $status,
  72. 'update_user' => session('username')
  73. );
  74. // 执行修改
  75. if ($this->model->modMessage($id, $data)) {
  76. $this->log('修改留言' . $id . '成功!');
  77. if (! ! $backurl = get('backurl')) {
  78. success('修改成功!', base64_decode($backurl));
  79. } else {
  80. success('修改成功!', url('/admin/Message/index'));
  81. }
  82. } else {
  83. location(- 1);
  84. }
  85. } else {
  86. // 调取修改内容
  87. $this->assign('mod', true);
  88. if (! $result = $this->model->getMessage($id)) {
  89. error('编辑的内容已经不存在!', - 1);
  90. }
  91. $this->assign('message', $result);
  92. $this->display('content/message.html');
  93. }
  94. }
  95. // 清空
  96. public function clear()
  97. {
  98. if($_GET['ids']){
  99. $idList = implode("," , explode("and",$_GET['ids']));
  100. } else {
  101. $idList = null;
  102. }
  103. if ($this->model->clearMessage($idList)){
  104. alert_location('删除成功!', url('/admin/Message/index'));
  105. } else {
  106. alert_location('删除失败!', url('/admin/Message/index'));
  107. }
  108. }
  109. }