心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LinkController.php 7.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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\LinkModel;
  12. class LinkController extends Controller
  13. {
  14. private $model;
  15. public function __construct()
  16. {
  17. $this->model = new LinkModel();
  18. }
  19. // 友情链接列表
  20. public function index()
  21. {
  22. //调用城市
  23. $city_list = $this->model->getCity();
  24. //var_dump($city_list);
  25. $this->assign('city_list', $city_list);
  26. if ((! ! $id = get('id', 'int')) && $result = $this->model->getLink($id)) {
  27. $this->assign('more', true);
  28. $this->assign('link', $result);
  29. } else {
  30. $this->assign('list', true);
  31. if (! ! ($field = get('field', 'var')) && ! ! ($keyword = get('keyword', 'vars'))) {
  32. $result = $this->model->findLink($field, $keyword);
  33. } else {
  34. $result = $this->model->getList();
  35. }
  36. $this->assign('gids', $this->model->getGid());
  37. $this->assign('links', $result);
  38. }
  39. $this->display('content/link.html');
  40. }
  41. // 友情链接增加
  42. public function add()
  43. {
  44. if ($_POST) {
  45. // 获取数据
  46. $gid = post('gid', 'int');
  47. $name = post('name');
  48. $link = post('link');
  49. $logo = post('logo');
  50. $sorting = post('sorting');
  51. $city = post('city');
  52. //查询城市名称
  53. $cityName = $this->model->getCityName($city);
  54. if (! $gid) {
  55. $gid = $this->model->getMaxGid() + 1;
  56. }
  57. if (! $name) {
  58. alert_back('名称不能为空!');
  59. }
  60. if (! $link) {
  61. alert_back('链接不能为空!');
  62. }
  63. if (! $sorting) {
  64. $sorting = 255;
  65. }
  66. // logo图缩放
  67. if ($logo) {
  68. resize_img(ROOT_PATH . $logo, '', $this->config('ico.max_width'), $this->config('ico.max_height'));
  69. }
  70. // 构建数据
  71. $data = array(
  72. 'acode' => session('acode'),
  73. 'gid' => $gid,
  74. 'name' => $name,
  75. 'link' => $link,
  76. 'logo' => $logo,
  77. 'city' => $city,
  78. 'csm' => $cityName,
  79. 'sorting' => $sorting,
  80. 'create_user' => session('username'),
  81. 'update_user' => session('username')
  82. );
  83. // 执行添加
  84. if ($this->model->addLink($data)) {
  85. $this->log('新增友情链接成功!');
  86. if (! ! $backurl = get('backurl')) {
  87. success('新增成功!', base64_decode($backurl));
  88. } else {
  89. success('新增成功!', url('/admin/Link/index'));
  90. }
  91. } else {
  92. $this->log('新增友情链接失败!');
  93. error('新增失败!', - 1);
  94. }
  95. }
  96. }
  97. // 友情链接删除
  98. public function del()
  99. {
  100. if (! $id = get('id', 'int')) {
  101. error('传递的参数值错误!', - 1);
  102. }
  103. if ($this->model->delLink($id)) {
  104. $this->log('删除友情链接' . $id . '成功!');
  105. success('删除成功!', - 1);
  106. } else {
  107. $this->log('删除友情链接' . $id . '失败!');
  108. error('删除失败!', - 1);
  109. }
  110. }
  111. // 友情链接修改
  112. public function mod()
  113. {
  114. if (! ! $submit = post('submit')) {
  115. switch ($submit) {
  116. case 'sorting': // 修改列表排序
  117. $listall = post('listall');
  118. if ($listall) {
  119. $sorting = post('sorting');
  120. foreach ($listall as $key => $value) {
  121. if ($sorting[$key] === '' || ! is_numeric($sorting[$key]))
  122. $sorting[$key] = 255;
  123. $this->model->modLink($value, "sorting=" . $sorting[$key]);
  124. }
  125. $this->log('批量修改链接排序成功!');
  126. success('修改成功!', - 1);
  127. } else {
  128. alert_back('排序失败,无任何内容!');
  129. }
  130. break;
  131. }
  132. }
  133. if (! $id = get('id', 'int')) {
  134. error('传递的参数值错误!', - 1);
  135. }
  136. // 单独修改状态
  137. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  138. if ($this->model->modLink($id, "$field='$value',update_user='" . session('username') . "'")) {
  139. location(- 1);
  140. } else {
  141. alert_back('修改失败!');
  142. }
  143. }
  144. // 修改操作
  145. if ($_POST) {
  146. // 获取数据
  147. $gid = post('gid', 'int');
  148. $name = post('name');
  149. $link = post('link');
  150. $logo = post('logo');
  151. $sorting = post('sorting');
  152. $city = post('city');
  153. //查询城市名称
  154. $cityName = $this->model->getCityName($city);
  155. if (! $gid) {
  156. $gid = $this->model->getMaxGid() + 1;
  157. }
  158. if (! $name) {
  159. alert_back('名称不能为空!');
  160. }
  161. if (! $link) {
  162. alert_back('链接不能为空!');
  163. }
  164. // logo图缩放
  165. if ($logo) {
  166. resize_img(ROOT_PATH . $logo, '', $this->config('ico.max_width'), $this->config('ico.max_height'));
  167. }
  168. // 构建数据
  169. $data = array(
  170. 'gid' => $gid,
  171. 'name' => $name,
  172. 'link' => $link,
  173. 'logo' => $logo,
  174. 'city' => $city,
  175. 'csm' => $cityName,
  176. 'sorting' => $sorting,
  177. 'update_user' => session('username')
  178. );
  179. // 执行添加
  180. if ($this->model->modLink($id, $data)) {
  181. $this->log('修改友情链接' . $id . '成功!');
  182. if (! ! $backurl = get('backurl')) {
  183. success('修改成功!', base64_decode($backurl));
  184. } else {
  185. success('修改成功!', url('/admin/Link/index'));
  186. }
  187. } else {
  188. location(- 1);
  189. }
  190. } else {
  191. // 调取修改内容
  192. $this->assign('mod', true);
  193. if (! $result = $this->model->getLink($id)) {
  194. error('编辑的内容已经不存在!', - 1);
  195. }
  196. //var_dump($result);
  197. //调用城市
  198. $city_list = $this->model->getCity($result->city);
  199. //var_dump($city_list);
  200. $this->assign('city_list', $city_list);
  201. $this->assign('gids', $this->model->getGid());
  202. $this->assign('link', $result);
  203. $this->display('content/link.html');
  204. }
  205. }
  206. }