心理咨询网
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

CompanyController.php 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年04月17日
  7. * 公司设置控制器
  8. */
  9. namespace app\admin\controller\content;
  10. use core\basic\Controller;
  11. use app\admin\model\content\CompanyModel;
  12. class CompanyController extends Controller
  13. {
  14. private $model;
  15. public function __construct()
  16. {
  17. $this->model = new CompanyModel();
  18. }
  19. // 显示公司设置
  20. public function index()
  21. {
  22. // 获取公司配置
  23. $this->assign('companys', $this->model->getList());
  24. $this->display('content/company.html');
  25. }
  26. // 修改公司设置
  27. public function mod()
  28. {
  29. if (! $_POST) {
  30. return;
  31. }
  32. $data = array(
  33. 'name' => post('name'),
  34. 'address' => post('address'),
  35. 'postcode' => post('postcode'),
  36. 'contact' => post('contact'),
  37. 'mobile' => post('mobile'),
  38. 'phone' => post('phone'),
  39. 'fax' => post('fax'),
  40. 'email' => post('email'),
  41. 'qq' => post('qq'),
  42. 'weixin' => post('weixin'),
  43. 'blicense' => post('blicense'),
  44. 'other' => post('other')
  45. );
  46. if ($this->model->checkCompany()) {
  47. if ($this->model->modCompany($data)) {
  48. $this->log('修改公司信息成功!');
  49. success('修改成功!', - 1);
  50. } else {
  51. location(- 1);
  52. }
  53. } else {
  54. $data['acode'] = session('acode');
  55. if ($this->model->addCompany($data)) {
  56. $this->log('修改公司信息成功!');
  57. success('修改成功!', - 1);
  58. } else {
  59. location(- 1);
  60. }
  61. }
  62. }
  63. }