Nenhuma descrição
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.

AdPosition.php 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 广告分类
  18. */
  19. class AdPosition extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. /**
  28. * 获取单条记录
  29. * @author wengxianhu by 2017-7-26
  30. */
  31. public function getInfo($id, $field = '*')
  32. {
  33. $result = Db::name('AdPosition')->field($field)->find($id);
  34. return $result;
  35. }
  36. /**
  37. * 获取多条记录
  38. * @author wengxianhu by 2017-7-26
  39. */
  40. public function getListByIds($ids, $field = '*')
  41. {
  42. $map = array(
  43. 'id' => array('IN', $ids),
  44. 'lang' => get_admin_lang(),
  45. );
  46. $result = Db::name('AdPosition')->field($field)
  47. ->where($map)
  48. ->select();
  49. return $result;
  50. }
  51. /**
  52. * 默认获取广告分类,包括有效、无效等分类
  53. * @author wengxianhu by 2017-7-26
  54. */
  55. public function getAll($field = '*', $index_key = '')
  56. {
  57. $result = Db::name('AdPosition')->field($field)
  58. ->where([
  59. 'lang' => get_admin_lang(),
  60. ])->select();
  61. if (!empty($index_key)) {
  62. $result = convert_arr_key($result, $index_key);
  63. }
  64. return $result;
  65. }
  66. }