1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\admin\model\educational;
- use traits\ModelTrait;
- use basic\ModelBasic;
- use service\UtilService as Util;
- use app\admin\model\educational\Teacher;
- /**
- * 老师分类 Model
- * Class TeacherCategpry
- * @package app\admin\model\educational
- */
- class TeacherCategpry extends ModelBasic
- {
- use ModelTrait;
- /**
- * 全部老师分类
- */
- public static function taskCategoryAll($type = 0)
- {
- $model = self::where('is_del', 0);
- if ($type == 1) {
- $model = $model->where('pid', 0);
- }
- $list = $model->order('sort desc,add_time desc')->select();
- $list = count($list) > 0 ? $list->toArray() : [];
- $list = Util::sortListTier($list);
- return $list;
- }
- /**
- * 老师分类列表
- */
- public static function getAllList($where)
- {
- $data = self::setWhere($where)->column('id,pid');
- $list = [];
- foreach ($data as $ket => $item) {
- $cate = self::where('id', $ket)->find();
- if ($cate) {
- $cate = $cate->toArray();
- if ($item > 0) {
- $cate['sum'] = Teacher::where('is_del', 0)->where('pid', $ket)->count();
- } else {
- $pids = self::categoryId($ket);
- $cate['sum'] = Teacher::where('is_del', 0)->where('pid', 'in', $pids)->count();
- }
- array_push($list, $cate);
- unset($cate);
- }
- if ($item > 0 && !array_key_exists($item, $data)) {
- $cate = self::where('id', $item)->find();
- if ($cate) {
- $cate = $cate->toArray();
- $pids = self::categoryId($item);
- $cate['sum'] = Teacher::where('is_del', 0)->where('pid', 'in', $pids)->count();
- array_push($list, $cate);
- }
- unset($cate);
- }
- }
- return $list;
- }
- public static function setWhere($where)
- {
- $model = self::order('sort desc,add_time desc')->where('is_del', 0);
- if ($where['pid']) $model = $model->where('id', $where['pid']);
- if ($where['title'] != '') $model = $model->where('title', 'like', "%$where[title]%");
- return $model;
- }
- /**获取一个分类下的所有分类ID
- * @param int $pid
- */
- public static function categoryId($pid = 0)
- {
- $data = self::where('is_del', 0)->where('pid', $pid)->column('id');
- array_push($data, $pid);
- return $data;
- }
- }
|