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.

DiyExtendLogic.php 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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\logic;
  14. use think\Model;
  15. use think\Db;
  16. use think\Request;
  17. /**
  18. * 逻辑定义
  19. * Class CatsLogic
  20. * @package admin\Logic
  21. */
  22. class DiyExtendLogic extends Model
  23. {
  24. private $request = null; // 当前Request对象实例
  25. private $admin_lang = 'cn'; // 后台多语言标识
  26. /**
  27. * 析构函数
  28. */
  29. function __construct() {
  30. null === $this->request && $this->request = Request::instance();
  31. $this->admin_lang = get_admin_lang();
  32. }
  33. /**
  34. * 获取当前页面所在的模型ID
  35. * @param string $id 模型ID
  36. */
  37. public function getChannelid()
  38. {
  39. $channeltype = input('param.channeltype/d', 0);
  40. $channel = input('param.channel/d', $channeltype);
  41. if (!empty($channel)) {
  42. return $channel;
  43. }
  44. $controller_name = input('param.controller_name/s', '');
  45. if (empty($controller_name)) {
  46. $controller_name = $this->request->controller();
  47. }
  48. if ('Custom' != $controller_name) {
  49. $channel = Db::name('channeltype')->where([
  50. 'ctl_name' => $controller_name,
  51. ])->getField('id');
  52. }
  53. return $channel;
  54. }
  55. }