Açıklama Yok
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.

UsersLevel.php 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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\common\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 会员级别
  18. */
  19. class UsersLevel extends Model
  20. {
  21. private $lang = 'cn';
  22. private $main_lang = 'cn';
  23. //初始化
  24. protected function initialize()
  25. {
  26. // 需要调用`Model`的`initialize`方法
  27. parent::initialize();
  28. $this->lang = get_current_lang();
  29. $this->main_lang = get_main_lang();
  30. }
  31. /**
  32. * 校验唯一性
  33. * @author wengxianhu by 2017-7-26
  34. */
  35. public function isRequired($id_name='',$id_value='',$field='',$value='')
  36. {
  37. $return = true;
  38. if ('ask_is_release' == $field || 'ask_is_review' == $field) return $return;
  39. $value = trim($value);
  40. if (!empty($value)) {
  41. $field == 'level_value' && $value = intval($value);
  42. $count = $this->where([
  43. $field => $value,
  44. $id_name => ['NEQ', $id_value],
  45. ])->count();
  46. if (!empty($count)) {
  47. $return = [
  48. 'msg' => '数据不可重复',
  49. ];
  50. }
  51. }
  52. return $return;
  53. }
  54. public function getList($field = '*', $where = [], $index_key = '')
  55. {
  56. $map = [];
  57. if (!empty($where)) {
  58. $map = array_merge($map, $where);
  59. }
  60. if (!isset($map['lang'])) {
  61. $map['lang'] = $this->main_lang;
  62. }
  63. $result = Db::name('users_level')->field($field)->where($map)->cache(true, EYOUCMS_CACHE_TIME, "users_level")->order('level_value asc, level_id asc')->select();
  64. if (!empty($index_key)) {
  65. $result = convert_arr_key($result, $index_key);
  66. }
  67. return $result;
  68. }
  69. }